diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-27 16:02:26 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-27 16:02:26 +0000 |
commit | 027542e2e5daa94c6517c0283be40834773fb475 (patch) | |
tree | 72cb0cef1a927355d14953dab42d0dfa55724490 /synapse/api | |
parent | on_receive_pdu takes more args (diff) | |
download | synapse-027542e2e5daa94c6517c0283be40834773fb475.tar.xz |
Fix bugs when joining a remote room that has dodgy event graphs. This should also fix the number of times a HS will trigger a GET /event/
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index fb911e51a6..2b0475543d 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -202,7 +202,10 @@ class Auth(object): # Invites are valid iff caller is in the room and target isn't. if not caller_in_room: # caller isn't joined - raise AuthError(403, "You are not in room %s." % event.room_id) + raise AuthError( + 403, + "%s not in room %s." % (event.user_id, event.room_id,) + ) elif target_in_room: # the target is already in the room. raise AuthError(403, "%s is already in the room." % target_user_id) @@ -225,7 +228,10 @@ class Auth(object): # TODO (erikj): Implement kicks. if not caller_in_room: # trying to leave a room you aren't joined - raise AuthError(403, "You are not in room %s." % event.room_id) + raise AuthError( + 403, + "%s not in room %s." % (target_user_id, event.room_id,) + ) elif target_user_id != event.user_id: if kick_level: kick_level = int(kick_level) |