Remove missed area for notification state fetching

pull/21833/head
Travis Ralston 2020-07-21 20:51:40 -06:00
parent dd16ec070c
commit 507fa01ade
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ export default class RoomList extends React.Component<IProps, IState> {
if (unread) {
// filter to only notification rooms (and our current active room so we can index properly)
listRooms = listRooms.filter(r => {
const state = RoomNotificationStateStore.instance.getRoomState(r, t);
const state = RoomNotificationStateStore.instance.getRoomState(r);
return state.room.roomId === roomId || state.isUnread;
});
}