Skip to content

Commit 38f5a5e

Browse files
committed
fix: channel watching edge case
1 parent 3f34026 commit 38f5a5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/src/components/Channel/Channel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ const ChannelWithContext = (props: PropsWithChildren<ChannelPropsWithContext>) =
814814
const initChannel = async () => {
815815
setLastRead(new Date());
816816
const unreadCount = channel.countUnread();
817-
if (!channel || !shouldSyncChannel || channel.offlineMode) {
817+
if (!channel || !shouldSyncChannel) {
818818
return;
819819
}
820820
let errored = false;

0 commit comments

Comments
 (0)