summary refs log tree commit diff
path: root/synapse/handlers/message.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-04-04 14:43:57 +0100
committerErik Johnston <erik@matrix.org>2019-04-04 14:43:57 +0100
commit8467756dc124e305a7d2d5cd211c98ea3ea2d469 (patch)
tree61df74bd18b107866f413f3a249492025033f390 /synapse/handlers/message.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentClean up the database pagination code (#5007) (diff)
downloadsynapse-8467756dc124e305a7d2d5cd211c98ea3ea2d469.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r--synapse/handlers/message.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py

index 054398dbcb..3b4860578d 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py
@@ -192,7 +192,7 @@ class MessageHandler(object): "Getting joined members after leaving is not implemented" ) - users_with_profile = yield self.state.get_current_user_in_room(room_id) + users_with_profile = yield self.state.get_current_users_in_room(room_id) # If this is an AS, double check that they are allowed to see the members. # This can either be because the AS user is in the room or because there