mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Ignore leave members in the list too
This commit is contained in:
parent
78087617d1
commit
069a9745b0
@ -169,8 +169,8 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
|
||||
var updateMemberList = function(chunk) {
|
||||
if (chunk.room_id != $scope.room_id) return;
|
||||
|
||||
// Ignore banned people
|
||||
if ("ban" === chunk.membership) {
|
||||
// Ignore banned and kicked (leave) people
|
||||
if ("ban" === chunk.membership || "leave" === chunk.membership) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user