summary refs log tree commit diff
path: root/synapse/handlers/message.py
diff options
context:
space:
mode:
authorhera <matrix@template.upcloud.com>2017-10-12 10:41:46 +0000
committerRichard van der Hoff <richard@matrix.org>2018-06-22 15:58:15 +0100
commitfae708c0e8c35930f1172322b7c0e9f0b1b3f9a4 (patch)
tree06315f1b517715c7bb1fef0e8c2fcbf72a83c3fc /synapse/handlers/message.py
parentBump LAST_SEEN_GRANULARITY in client_ips (diff)
downloadsynapse-fae708c0e8c35930f1172322b7c0e9f0b1b3f9a4.tar.xz
Disable auth on room_members for now
because the moznet bridge is broken (https://github.com/matrix-org/matrix-appservice-irc/issues/506)
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 7b9946ab91..b194f113ce 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py
@@ -390,7 +390,7 @@ class MessageHandler(BaseHandler): # 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 becuase there # is a user in the room that the AS is "interested in" - if requester.app_service and user_id not in users_with_profile: + if False and requester.app_service and user_id not in users_with_profile: for uid in users_with_profile: if requester.app_service.is_interested_in_user(uid): break