Ignore leave members in the list too

pull/8/head
Emmanuel ROHEE 2014-09-03 19:37:54 +02:00
parent 78087617d1
commit 069a9745b0
1 changed files with 2 additions and 2 deletions

View File

@ -169,8 +169,8 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
var updateMemberList = function(chunk) { var updateMemberList = function(chunk) {
if (chunk.room_id != $scope.room_id) return; if (chunk.room_id != $scope.room_id) return;
// Ignore banned people // Ignore banned and kicked (leave) people
if ("ban" === chunk.membership) { if ("ban" === chunk.membership || "leave" === chunk.membership) {
return; return;
} }