Skip to content
Snippets Groups Projects
Commit 4c4f4493 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix not showing non-federatable rooms to remote room list queries

parent 8e32240e
No related branches found
No related tags found
No related merge requests found
......@@ -174,6 +174,9 @@ class RoomWorkerStore(SQLBaseStore):
query_args += [last_joined_members, last_joined_members, last_room_id]
if ignore_non_federatable:
where_clauses.append("is_federatable")
if search_filter and search_filter.get("generic_search_term", None):
search_term = "%" + search_filter["generic_search_term"] + "%"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment