mirror of
https://github.com/vector-im/element-web.git
synced 2025-11-06 11:11:07 +01:00
Only display rooms you're currently joined to in recents
This commit is contained in:
parent
5fb6ea94b2
commit
5835ea0a97
@ -96,7 +96,14 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
getRoomList: function() {
|
getRoomList: function() {
|
||||||
return RoomListSorter.mostRecentActivityFirst(MatrixClientPeg.get().getRooms());
|
return RoomListSorter.mostRecentActivityFirst(
|
||||||
|
MatrixClientPeg.get().getRooms().filter(function(room) {
|
||||||
|
return room.hasMembershipState(
|
||||||
|
MatrixClientPeg.get().credentials.userId,
|
||||||
|
"join"
|
||||||
|
);
|
||||||
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
makeRoomTiles: function() {
|
makeRoomTiles: function() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user