Only display rooms you're currently joined to in recents

pull/1/head
Erik Johnston 2015-07-22 11:33:46 +01:00
parent 5fb6ea94b2
commit 5835ea0a97
1 changed files with 8 additions and 1 deletions

View File

@ -96,7 +96,14 @@ module.exports = {
},
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() {