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/presence.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/presence.py')
-rw-r--r-- | synapse/handlers/presence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/presence.py b/synapse/handlers/presence.py index 3b22a22a19..bd1285b15c 100644 --- a/synapse/handlers/presence.py +++ b/synapse/handlers/presence.py @@ -883,7 +883,7 @@ class PresenceHandler(object): # TODO: Check that this is actually a new server joining the # room. - user_ids = yield self.state.get_current_user_in_room(room_id) + user_ids = yield self.state.get_current_users_in_room(room_id) user_ids = list(filter(self.is_mine_id, user_ids)) states = yield self.current_state_for_users(user_ids) |