We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05bae7 commit a621277Copy full SHA for a621277
packages/stream_chat/CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## Upcoming
2
+
3
+🐞 Fixed
4
5
+- Fixed incorrect user object and online presence when user is updated.
6
7
## 7.3.0
8
9
🔄 Changed
packages/stream_chat/lib/src/client/client.dart
@@ -1633,7 +1633,7 @@ class ClientState {
1633
_eventsSubscription?.add(
1634
_client.on(EventType.userUpdated).listen((event) {
1635
if (event.user!.id == currentUser!.id) {
1636
- currentUser = OwnUser.fromJson(event.user!.toJson());
+ currentUser = OwnUser.fromUser(event.user!);
1637
}
1638
updateUser(event.user);
1639
}),
0 commit comments