From 59d7674b2a2cdf511be7aa7649a6226f4d60666a Mon Sep 17 00:00:00 2001 From: Matthias Ahouansou Date: Wed, 29 May 2024 09:36:35 +0100 Subject: [PATCH] fix: clarify that 3pids are currently unsupported --- src/api/client_server/account.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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", )) }