mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-18 16:24:18 -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
@ -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…
Reference in New Issue
Block a user