diff options
author | reivilibre <oliverw@matrix.org> | 2023-02-13 16:30:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 16:30:58 +0000 |
commit | 3d7aead5d62e6da97e006199b3f957325e54b053 (patch) | |
tree | 46582b41a84118b41455a8544b6fb5de19339a7a /synapse | |
parent | Update pyo3-log to v0.8.1 (#15043) (diff) | |
download | synapse-3d7aead5d62e6da97e006199b3f957325e54b053.tar.xz |
Tweak comment on `_is_local_room_accessible` as part of room visibility in `/hierarchy` to clarify the condition for a room being visible. (#14834)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/room_summary.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/room_summary.py b/synapse/handlers/room_summary.py index 4472019fbc..807245160d 100644 --- a/synapse/handlers/room_summary.py +++ b/synapse/handlers/room_summary.py @@ -521,8 +521,8 @@ class RoomSummaryHandler: It should return true if: - * The requester is joined or can join the room (per MSC3173). - * The origin server has any user that is joined or can join the room. + * The requesting user is joined or can join the room (per MSC3173); or + * The origin server has any user that is joined or can join the room; or * The history visibility is set to world readable. Args: |