From 32808e4111d4f2db9ad0af7e0eacb96d7f0d81fc Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Thu, 18 Sep 2014 10:05:34 +0100 Subject: [PATCH] Still add the room to the filtered list even if you can't work out the number of users in the room. --- webclient/recents/recents-filter.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/webclient/recents/recents-filter.js b/webclient/recents/recents-filter.js index 2fd4dbe98..d948205e1 100644 --- a/webclient/recents/recents-filter.js +++ b/webclient/recents/recents-filter.js @@ -35,9 +35,8 @@ angular.module('RecentsController') // Count users here // TODO: Compute it directly in eventHandlerService room.numUsersInRoom = eventHandlerService.getUsersCountInRoom(room_id); - - filtered.push(room); } + filtered.push(room); }); // And time sort them @@ -61,4 +60,4 @@ angular.module('RecentsController') }); return filtered; }; -}]); \ No newline at end of file +}]);