Skip to content

Commit fae708c

Browse files
herarichvdh
hera
authored andcommitted
Disable auth on room_members for now
because the moznet bridge is broken (matrix-org/matrix-appservice-irc#506)
1 parent 8f8ea91 commit fae708c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synapse/handlers/message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def get_joined_members(self, requester, room_id):
390390
# If this is an AS, double check that they are allowed to see the members.
391391
# This can either be because the AS user is in the room or becuase there
392392
# is a user in the room that the AS is "interested in"
393-
if requester.app_service and user_id not in users_with_profile:
393+
if False and requester.app_service and user_id not in users_with_profile:
394394
for uid in users_with_profile:
395395
if requester.app_service.is_interested_in_user(uid):
396396
break

0 commit comments

Comments
 (0)