mirror of https://github.com/vector-im/riot-web
Handle indication from server that a room has no more tags
parent
8d0d0b43ff
commit
dd0e981d72
|
@ -153,6 +153,10 @@ class RoomListStore extends Store {
|
||||||
newLists[tagName].push(updatedRoom);
|
newLists[tagName].push(updatedRoom);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (roomTags.length === 0) {
|
||||||
|
newLists['im.vector.fake.recent'].unshift(updatedRoom);
|
||||||
|
}
|
||||||
|
|
||||||
this._setState({
|
this._setState({
|
||||||
lists: newLists,
|
lists: newLists,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue