mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-13 08:31:33 -05:00
Don't try & check the username if we don't have one (which we won't if it's been saved in the auth layer)
This commit is contained in:
parent
28d07a02e4
commit
7148aaf5d0
1 changed files with 2 additions and 1 deletions
|
|
@ -102,6 +102,7 @@ class RegisterRestServlet(RestServlet):
|
|||
if self.hs.config.disable_registration:
|
||||
raise SynapseError(403, "Registration has been disabled")
|
||||
|
||||
if desired_username is not None:
|
||||
yield self.registration_handler.check_username(desired_username)
|
||||
|
||||
if self.hs.config.enable_registration_captcha:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue