From 74539aa25b93f4b59268406f2b0a8036e55c9a96 Mon Sep 17 00:00:00 2001 From: hera Date: Thu, 12 Oct 2017 10:41:46 +0000 Subject: Disable auth on room_members for now because the moznet bridge is broken (https://github.com/matrix-org/matrix-appservice-irc/issues/506) --- synapse/handlers/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'synapse/handlers/message.py') diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py index 1c3ac03f20..7adb0ce199 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py @@ -283,7 +283,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 -- cgit 1.5.1