mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-03 13:18:56 +01:00
Result may be None
This commit is contained in:
parent
71669a0fba
commit
6946c20111
1 changed files with 1 additions and 1 deletions
|
@ -329,7 +329,7 @@ class RoomListHandler(BaseHandler):
|
||||||
result = yield self.generate_room_entry(room_id, num_joined_users)
|
result = yield self.generate_room_entry(room_id, num_joined_users)
|
||||||
|
|
||||||
if from_federation and not self.config.allow_non_federated_in_public_rooms:
|
if from_federation and not self.config.allow_non_federated_in_public_rooms:
|
||||||
if result["m.federate"] is False:
|
if not result or result["m.federate"] is False:
|
||||||
# This is a non-federating room and the config has chosen not
|
# This is a non-federating room and the config has chosen not
|
||||||
# to show these rooms to other servers
|
# to show these rooms to other servers
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue