diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-04-03 14:32:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-03 14:32:20 +0100 |
commit | 4a4d5c4fd6552037a8660b18360ac7e0050b873f (patch) | |
tree | f0c4256ae44418064721a27c9d403acbbdfd70f2 /synapse/handlers/room_list.py | |
parent | Rewrite KeyringTestCase as a HomeServerTestCase (#4986) (diff) | |
download | synapse-4a4d5c4fd6552037a8660b18360ac7e0050b873f.tar.xz |
Fix grammar and document get_current_users_in_room (#4998)
Diffstat (limited to 'synapse/handlers/room_list.py')
-rw-r--r-- | synapse/handlers/room_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room_list.py b/synapse/handlers/room_list.py index d6c9d56007..617d1c9ef8 100644 --- a/synapse/handlers/room_list.py +++ b/synapse/handlers/room_list.py @@ -167,7 +167,7 @@ class RoomListHandler(BaseHandler): if not latest_event_ids: return - joined_users = yield self.state_handler.get_current_user_in_room( + joined_users = yield self.state_handler.get_current_users_in_room( room_id, latest_event_ids, ) |