diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-20 10:39:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 10:39:41 -0400 |
commit | 592cdf73be50af837d8c255ebcb5fbcd429c2954 (patch) | |
tree | 7949bf763b54ec4b874b75df1dd6638ac83653d0 | |
parent | Use the JSON encoder without whitespace in more places. (#8124) (diff) | |
download | synapse-592cdf73be50af837d8c255ebcb5fbcd429c2954.tar.xz |
Improve the error code when trying to register using a name reserved for guests. (#8135)
-rw-r--r-- | changelog.d/8135.bugfix | 1 | ||||
-rw-r--r-- | synapse/handlers/register.py | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/changelog.d/8135.bugfix b/changelog.d/8135.bugfix new file mode 100644 index 0000000000..9d5c60ea00 --- /dev/null +++ b/changelog.d/8135.bugfix @@ -0,0 +1 @@ +Clarify the error code if a user tries to register with a numeric ID. This bug was introduced in v1.15.0. diff --git a/synapse/handlers/register.py b/synapse/handlers/register.py index 999bc6efb5..ccd96e4626 100644 --- a/synapse/handlers/register.py +++ b/synapse/handlers/register.py @@ -124,7 +124,9 @@ class RegistrationHandler(BaseHandler): try: int(localpart) raise SynapseError( - 400, "Numeric user IDs are reserved for guest users." + 400, + "Numeric user IDs are reserved for guest users.", + errcode=Codes.INVALID_USERNAME, ) except ValueError: pass |