fix: room notification level
parent
49764d1a83
commit
d6c8392303
|
@ -443,7 +443,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
// find the first room with a count of the same colour as the badge count
|
||||
room = RoomListStore.instance.orderedLists[this.getTagId()].find((r: Room) => {
|
||||
const notifState = this.notificationState.getForRoom(r);
|
||||
return notifState.count > 0 && notifState.color === this.notificationState.color;
|
||||
return notifState.count > 0 && notifState.level === this.notificationState.level;
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue