Ignore leave members in the list too

This commit is contained in:
Emmanuel ROHEE 2014-09-03 19:37:54 +02:00
parent 78087617d1
commit 069a9745b0

View File

@ -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;
}