Don't regenerate RoomListStore state for notifs/scrollback/etc.

Only do so for the live timeline of rooms.
This commit is contained in:
Luke Barnard 2018-02-19 09:56:03 +00:00
parent 3f6c15506c
commit 32130fbc28
2 changed files with 3 additions and 0 deletions

View file

@ -81,6 +81,7 @@ class RoomListStore extends Store {
case 'MatrixActions.Room.timeline': {
if (!this._state.ready ||
!payload.isLiveEvent ||
!payload.isLiveUnfilteredRoomTimelineEvent ||
!this._eventTriggersRecentReorder(payload.event)
) break;
this._generateRoomLists();