mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-09 23:47:42 -05:00
Cleaner chunk logic
This commit is contained in:
parent
a712aa3a9c
commit
c4414768af
1 changed files with 4 additions and 5 deletions
|
|
@ -330,11 +330,10 @@ class RoomListHandler(BaseHandler):
|
|||
if not result:
|
||||
return
|
||||
|
||||
if from_federation:
|
||||
if "m.federate" in result and not result["m.federate"]:
|
||||
# This is a room that other servers cannot join. Do not show them
|
||||
# this room.
|
||||
return
|
||||
if from_federation and not result.get("m.federate", True):
|
||||
# This is a room that other servers cannot join. Do not show them
|
||||
# this room.
|
||||
return
|
||||
|
||||
if _matches_room_entry(result, search_filter):
|
||||
chunk.append(result)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue