fix(llc,ui): fix user presence indicator update
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
|
||||
- `closeConnection()` now uses `normalClosure` status when closing websocket.
|
||||
- Fixed local unread count indicator increasing for thread replies
|
||||
- Fixed user presence indicator not updating correctly
|
||||
|
||||
## 3.2.0
|
||||
|
||||
|
||||
@@ -179,5 +179,16 @@ class User extends Equatable {
|
||||
);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [id, role];
|
||||
List<Object?> get props => [
|
||||
id,
|
||||
role,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
lastActive,
|
||||
online,
|
||||
extraData,
|
||||
banned,
|
||||
teams,
|
||||
language,
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user