From a8c1b24318db2e735021020a45571d3009b2d4b9 Mon Sep 17 00:00:00 2001 From: levlam Date: Wed, 5 Jul 2023 16:18:45 +0300 Subject: [PATCH] Improve error messages. --- td/telegram/AuthManager.cpp | 6 +++--- td/telegram/net/Session.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/td/telegram/AuthManager.cpp b/td/telegram/AuthManager.cpp index 2b2b75f52..e9a6cc739 100644 --- a/td/telegram/AuthManager.cpp +++ b/td/telegram/AuthManager.cpp @@ -1332,9 +1332,9 @@ void AuthManager::on_result(NetQueryPtr result) { return; } if (result->error().message() == CSlice("PHONE_NUMBER_BANNED")) { - LOG(PLAIN) - << "Your phone number was banned for suspicious activity. If you think that this is a mistake, please " - "write to recover@telegram.org your phone number and other details to recover the account."; + LOG(ERROR) << "Your phone number was banned for suspicious activity. If you think that this is a mistake, " + "please try to log in from an official mobile app and send a email to recover the account by " + "following instructions provided by the app."; } if (type != NetQueryType::LogOut && type != NetQueryType::DeleteAccount) { if (query_id_ != 0) { diff --git a/td/telegram/net/Session.cpp b/td/telegram/net/Session.cpp index 80f4d49cd..359c7244b 100644 --- a/td/telegram/net/Session.cpp +++ b/td/telegram/net/Session.cpp @@ -955,9 +955,9 @@ void Session::on_message_result_error(uint64 message_id, int error_code, string error_code = 500; } else { if (message == "USER_DEACTIVATED_BAN") { - LOG(PLAIN) - << "Your account was suspended for suspicious activity. If you think that this is a mistake, please " - "write to recover@telegram.org your phone number and other details to recover the account."; + LOG(ERROR) << "Your phone number was banned for suspicious activity. If you think that this is a mistake, " + "please try to log in from an official mobile app and send a email to recover the account by " + "following instructions provided by the app."; } auth_data_.set_auth_flag(false); G()->log_out(message);