mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 09:24:04 +01:00
improve human readable error message
This commit is contained in:
parent
c42f7fd7b9
commit
bae37cd811
1 changed files with 2 additions and 1 deletions
|
@ -378,7 +378,8 @@ class RegisterRestServlet(RestServlet):
|
|||
if not check_3pid_allowed(self.hs, medium, address):
|
||||
raise SynapseError(
|
||||
403,
|
||||
"Third party identifier (email/phone number) is not allowed",
|
||||
"Third party identifiers (email/phone numbers)" +
|
||||
" are not authorized on this server",
|
||||
Codes.THREEPID_DENIED,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue