Update TDLib to 1.8.25.

This commit is contained in:
levlam 2024-02-14 14:04:56 +03:00
parent 4639fbfb64
commit f1b9eb8d4c
2 changed files with 5 additions and 1 deletions

2
td

@ -1 +1 @@
Subproject commit 983f669116b5e636b2cf92f8c1df3c5f2d073da2 Subproject commit d93a99e3351db82573d765ce4f5e84714c277518

View File

@ -2816,6 +2816,8 @@ void Client::JsonMessage::store(td::JsonValueScope *scope) const {
object("giveaway_completed", JsonGiveawayCompleted(content, message_->chat_id, client_)); object("giveaway_completed", JsonGiveawayCompleted(content, message_->chat_id, client_));
break; break;
} }
case td_api::messageChatBoost::ID:
break;
default: default:
UNREACHABLE(); UNREACHABLE();
} }
@ -12347,6 +12349,8 @@ bool Client::need_skip_update_message(int64 chat_id, const object_ptr<td_api::me
return true; return true;
case td_api::messagePremiumGiftCode::ID: case td_api::messagePremiumGiftCode::ID:
return true; return true;
case td_api::messageChatBoost::ID:
return true;
default: default:
break; break;
} }