1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room_list.py b/synapse/handlers/room_list.py
index b7f450e719..94cabc2a2e 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)
|