mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-11 11:44:56 -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,7 +102,8 @@ class RegisterRestServlet(RestServlet):
|
|||
if self.hs.config.disable_registration:
|
||||
raise SynapseError(403, "Registration has been disabled")
|
||||
|
||||
yield self.registration_handler.check_username(desired_username)
|
||||
if desired_username is not None:
|
||||
yield self.registration_handler.check_username(desired_username)
|
||||
|
||||
if self.hs.config.enable_registration_captcha:
|
||||
flows = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue