fix(llc): unread count specific to channel setting wrong number

This commit is contained in:
Salvatore Giordano
2022-03-11 11:42:35 +01:00
parent 8f14cfe944
commit 9302bdd06a
@@ -1902,7 +1902,6 @@ class ChannelClientState {
readList.add(Read(
user: event.user!,
lastRead: event.createdAt,
unreadMessages: event.totalUnreadCount ?? 0,
));
_channelState = _channelState.copyWith(read: readList);
}