diff --git a/synapse/handlers/room_list.py b/synapse/handlers/room_list.py index b7f450e7192561416c93fee198cd9ce9a9e50ebe..94cabc2a2ea3083e75c8294b79d1679d04fb5c66 100644 --- a/synapse/handlers/room_list.py +++ b/synapse/handlers/room_list.py @@ -308,7 +308,7 @@ class RoomListHandler(BaseHandler): # This is a non-federating room and the config has chosen not # to show these rooms to other servers chunk.append(None) - else if result and _matches_room_entry(result, search_filter): + elif result and _matches_room_entry(result, search_filter): chunk.append(result) @cachedInlineCallbacks(num_args=2, cache_context=True)