1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-19 05:22:13 +03:00

Appease the linter

This commit is contained in:
Travis Ralston
2019-06-03 00:17:08 -06:00
parent dd42e87c3c
commit a71b4f5b4c

View File

@@ -99,10 +99,11 @@ export default class RoomBreadcrumbs extends React.Component {
// XXX: slight hack in order to zero the notification count when a room // XXX: slight hack in order to zero the notification count when a room
// is read. Copied from RoomTile // is read. Copied from RoomTile
case 'on_room_read': case 'on_room_read': {
const room = MatrixClientPeg.get().getRoom(payload.roomId); const room = MatrixClientPeg.get().getRoom(payload.roomId);
this._calculateRoomBadges(room, /*zero=*/true); this._calculateRoomBadges(room, /*zero=*/true);
break; break;
}
} }
} }