improve human readable error message

This commit is contained in:
Neil Johnson 2018-09-04 12:07:00 +01:00
parent c42f7fd7b9
commit bae37cd811
1 changed files with 2 additions and 1 deletions

View File

@ -378,7 +378,8 @@ class RegisterRestServlet(RestServlet):
if not check_3pid_allowed(self.hs, medium, address): if not check_3pid_allowed(self.hs, medium, address):
raise SynapseError( raise SynapseError(
403, 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, Codes.THREEPID_DENIED,
) )