mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 01:35:49 +03:00
Compare the right types of events
This commit is contained in:
parent
122868e32f
commit
a713cc5c52
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ class RoomListStore extends Store {
|
|||
|
||||
if (pinUnread) {
|
||||
const unreadA = this._getRoomState(roomA, "unread");
|
||||
const unreadB = this._getRoomState(roomB, "notifications");
|
||||
const unreadB = this._getRoomState(roomB, "unread");
|
||||
if (unreadA && !unreadB) return -1;
|
||||
if (!unreadA && unreadB) return 1;
|
||||
|
||||
|
|
Loading…
Reference in a new issue