diff --git a/src/api/client_server/account.rs b/src/api/client_server/account.rs index 0226abc7..1d86c65e 100644 --- a/src/api/client_server/account.rs +++ b/src/api/client_server/account.rs @@ -475,7 +475,7 @@ pub async fn request_3pid_management_token_via_email_route( ) -> Result { Err(Error::BadRequest( ErrorKind::ThreepidDenied, - "Third party identifier is not allowed", + "Third party identifiers are currently unsupported by this server implementation", )) } @@ -489,6 +489,6 @@ pub async fn request_3pid_management_token_via_msisdn_route( ) -> Result { Err(Error::BadRequest( ErrorKind::ThreepidDenied, - "Third party identifier is not allowed", + "Third party identifiers are currently unsupported by this server implementation", )) }