1 files changed, 4 insertions, 0 deletions
diff --git a/webclient/recents/recents-filter.js b/webclient/recents/recents-filter.js
index e8323f4a31..468a746b18 100644
--- a/webclient/recents/recents-filter.js
+++ b/webclient/recents/recents-filter.js
@@ -37,6 +37,10 @@ angular.module('RecentsController')
filtered.push(room);
}
+ else if ("invite" === room.membership) {
+ // The only information we have about the room is that the user has been invited
+ filtered.push(room);
+ }
});
// And time sort them
|