summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-05-22 17:27:03 +0100
committerRichard van der Hoff <richard@matrix.org>2018-05-22 17:27:27 +0100
commit08bfc48abf8c138b540ede6c816338c044130dec (patch)
tree2133935b03dd6914a568b956f7ac874391296e35 /synapse/handlers
parentcomment typo (diff)
downloadsynapse-08bfc48abf8c138b540ede6c816338c044130dec.tar.xz
custom error code for not leaving server notices room
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/room_member.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/handlers/room_member.py b/synapse/handlers/room_member.py
index 5263f09aaa..82adfc8fdf 100644
--- a/synapse/handlers/room_member.py
+++ b/synapse/handlers/room_member.py
@@ -306,6 +306,7 @@ class RoomMemberHandler(object):
                 raise SynapseError(
                     http_client.FORBIDDEN,
                     "You cannot leave this room",
+                    errcode=Codes.CANNOT_LEAVE_SERVER_NOTICE_ROOM,
                 )
 
         if effective_membership_state == Membership.INVITE: