Merge pull request #1005 from GetStream/hotfix/unreadCount

fix(llc): unread count specific to channel setting wrong number
This commit is contained in:
Salvatore Giordano
2022-03-11 13:29:02 +01:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
## Upcoming
🐞 Fixed
- Unread count specific to channel setting global unread count on a specific case.
## 3.5.0
✅ Added
@@ -1902,7 +1902,6 @@ class ChannelClientState {
readList.add(Read(
user: event.user!,
lastRead: event.createdAt,
unreadMessages: event.totalUnreadCount ?? 0,
));
_channelState = _channelState.copyWith(read: readList);
}