0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-03 18:08:19 +02:00

When the user has been kicked or banned from a room, remove the room from his recents list

This commit is contained in:
Emmanuel ROHEE 2014-09-09 16:31:50 +02:00
parent 5132fcdb8b
commit 746ed57c0e

View file

@ -51,7 +51,14 @@ angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHand
room_id:event.room_id
};
}
$rootScope.rooms[event.room_id].lastMsg = event;
else if (event.state_key === matrixService.config().user_id && "invite" !== event.membership && "join" !== event.membership) {
// The user has been kicked or banned from the room, remove this room from the recents
delete $rootScope.rooms[event.room_id];
}
if ($rootScope.rooms[event.room_id]) {
$rootScope.rooms[event.room_id].lastMsg = event;
}
}
});
$rootScope.$on(eventHandlerService.MSG_EVENT, function(ngEvent, event, isLive) {