2
0
mirror of https://github.com/tdlib/telegram-bot-api synced 2025-08-22 09:57:44 +00:00

Minor improvements.

This commit is contained in:
levlam 2025-01-24 17:44:02 +03:00
parent 07ad767503
commit 9649ead099
3 changed files with 7 additions and 7 deletions

View File

@ -4948,7 +4948,7 @@ class Client::TdOnCheckUserCallback final : public TdQueryCallback {
CHECK(result->get_id() == td_api::user::ID);
auto user = move_object_as<td_api::user>(result);
auto user_info = client_->get_user_info(user->id_);
CHECK(user_info != nullptr); // it must have already been got through updates
CHECK(user_info != nullptr); // it must have already been received through updates
client_->check_user_read_access(user_info, std::move(query_), std::move(on_success_));
}
@ -4995,7 +4995,7 @@ class Client::TdOnCheckChatCallback final : public TdQueryCallback {
CHECK(result->get_id() == td_api::chat::ID);
auto chat = move_object_as<td_api::chat>(result);
auto chat_info = client_->get_chat(chat->id_);
CHECK(chat_info != nullptr); // it must have already been got through updates
CHECK(chat_info != nullptr); // it must have already been received through updates
CHECK(chat_info->title == chat->title_);
if (only_supergroup_ && chat_info->type != ChatInfo::Type::Supergroup) {
return fail_query(400, "Bad Request: chat not found", std::move(query_));
@ -5089,7 +5089,7 @@ class Client::TdOnResolveBotUsernameCallback final : public TdQueryCallback {
CHECK(result->get_id() == td_api::chat::ID);
auto chat = move_object_as<td_api::chat>(result);
auto chat_info = client_->get_chat(chat->id_);
CHECK(chat_info != nullptr); // it must have already been got through updates
CHECK(chat_info != nullptr); // it must have already been received through updates
if (chat_info->type != ChatInfo::Type::Private) {
return client_->on_resolve_bot_username(username_, 0);
}
@ -14303,7 +14303,7 @@ bool Client::need_skip_update_message(int64 chat_id, const object_ptr<td_api::me
case td_api::messageChatAddMembers::ID: {
auto content = static_cast<const td_api::messageChatAddMembers *>(message->content_.get());
if (content->member_user_ids_.empty()) {
LOG(ERROR) << "Got empty messageChatAddMembers";
LOG(ERROR) << "Receive empty messageChatAddMembers";
return true;
}
break;

View File

@ -26,7 +26,7 @@ struct SharedData;
class HttpConnection final : public td::HttpInboundConnection::Callback {
public:
explicit HttpConnection(td::ActorId<ClientManager> client_manager, std::shared_ptr<SharedData> shared_data)
HttpConnection(td::ActorId<ClientManager> client_manager, std::shared_ptr<SharedData> shared_data)
: client_manager_(client_manager), shared_data_(std::move(shared_data)) {
}

View File

@ -595,9 +595,9 @@ void WebhookActor::handle(td::unique_ptr<td::HttpQuery> response) {
auto connection_id = get_link_token();
if (response) {
VLOG(webhook) << "Got response from connection " << connection_id;
VLOG(webhook) << "Receive response from connection " << connection_id;
} else {
VLOG(webhook) << "Got hangup from connection " << connection_id;
VLOG(webhook) << "Receive hangup from connection " << connection_id;
}
auto *connection_ptr = connections_.get(connection_id);
if (connection_ptr == nullptr) {