summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorTravis Ralston <travisr@matrix.org>2022-05-31 01:42:18 -0600
committerGitHub <noreply@github.com>2022-05-31 08:42:18 +0100
commitd0e40dfe29fdf068972fc9a63f50fc94daaa06b3 (patch)
tree1543bbe52d5753a3747c1a2e94bdb342242d7565 /synapse
parentRevert "Fix M_USER_ACCOUNT_SUSPENDED error code for spec compliance (#12922)" (diff)
downloadsynapse-d0e40dfe29fdf068972fc9a63f50fc94daaa06b3.tar.xz
Fix M_USER_ACCOUNT_SUSPENDED error code for spec compliance (#12923)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/api/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py
index 54268e0889..cc7b785472 100644
--- a/synapse/api/errors.py
+++ b/synapse/api/errors.py
@@ -84,7 +84,7 @@ class Codes(str, Enum):
     # By opposition to `USER_DEACTIVATED`, this is a reversible measure
     # that can possibly be appealed and reverted.
     # Part of MSC3823.
-    USER_ACCOUNT_SUSPENDED = "M_ORG_MATRIX_MSC3823_USER_ACCOUNT_SUSPENDED"
+    USER_ACCOUNT_SUSPENDED = "ORG.MATRIX.MSC3823.USER_ACCOUNT_SUSPENDED"
 
     BAD_ALIAS = "M_BAD_ALIAS"
     # For restricted join rules.