1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Handle indication from server that a room has no more tags

This commit is contained in:
lukebarnard
2018-02-06 12:00:23 +00:00
parent 8d0d0b43ff
commit dd0e981d72

View File

@@ -153,6 +153,10 @@ class RoomListStore extends Store {
newLists[tagName].push(updatedRoom);
});
if (roomTags.length === 0) {
newLists['im.vector.fake.recent'].unshift(updatedRoom);
}
this._setState({
lists: newLists,
});