@@ -4350,8 +4350,21 @@ class Client::JsonStarTransactionType final : public td::Jsonable {
4350
4350
}
4351
4351
case td_api::starTransactionTypeGiftPurchase::ID: {
4352
4352
auto type = static_cast<const td_api::starTransactionTypeGiftPurchase *>(type_);
4353
- object("type", "user");
4354
- object("user", JsonUser(type->user_id_, client_));
4353
+ switch (type->owner_id_->get_id()) {
4354
+ case td_api::messageSenderUser::ID: {
4355
+ auto owner_id = static_cast<const td_api::messageSenderUser *>(type->owner_id_.get());
4356
+ object("type", "user");
4357
+ object("user", JsonUser(owner_id->user_id_, client_));
4358
+ break;
4359
+ }
4360
+ case td_api::messageSenderChat::ID: {
4361
+ // auto owner_id = static_cast<const td_api::messageSenderChat *>(type->owner_id_.get());
4362
+ object("type", "other");
4363
+ break;
4364
+ }
4365
+ default:
4366
+ UNREACHABLE();
4367
+ }
4355
4368
object("gift", JsonGift(type->gift_.get(), client_));
4356
4369
break;
4357
4370
}
@@ -7267,7 +7280,11 @@ void Client::on_update(object_ptr<td_api::Object> result) {
7267
7280
chat_info->permissions = std::move(chat->permissions_);
7268
7281
chat_info->message_auto_delete_time = chat->message_auto_delete_time_;
7269
7282
chat_info->emoji_status_custom_emoji_id =
7270
- chat->emoji_status_ != nullptr ? chat->emoji_status_->custom_emoji_id_ : 0;
7283
+ chat->emoji_status_ != nullptr &&
7284
+ chat->emoji_status_->type_->get_id() == td_api::emojiStatusTypeCustomEmoji::ID
7285
+ ? static_cast<const td_api::emojiStatusTypeCustomEmoji *>(chat->emoji_status_->type_.get())
7286
+ ->custom_emoji_id_
7287
+ : 0;
7271
7288
chat_info->emoji_status_expiration_date =
7272
7289
chat->emoji_status_ != nullptr ? chat->emoji_status_->expiration_date_ : 0;
7273
7290
set_chat_available_reactions(chat_info, std::move(chat->available_reactions_));
@@ -7311,7 +7328,11 @@ void Client::on_update(object_ptr<td_api::Object> result) {
7311
7328
auto chat_info = add_chat(update->chat_id_);
7312
7329
CHECK(chat_info->type != ChatInfo::Type::Unknown);
7313
7330
chat_info->emoji_status_custom_emoji_id =
7314
- update->emoji_status_ != nullptr ? update->emoji_status_->custom_emoji_id_ : 0;
7331
+ update->emoji_status_ != nullptr &&
7332
+ update->emoji_status_->type_->get_id() == td_api::emojiStatusTypeCustomEmoji::ID
7333
+ ? static_cast<const td_api::emojiStatusTypeCustomEmoji *>(update->emoji_status_->type_.get())
7334
+ ->custom_emoji_id_
7335
+ : 0;
7315
7336
chat_info->emoji_status_expiration_date =
7316
7337
update->emoji_status_ != nullptr ? update->emoji_status_->expiration_date_ : 0;
7317
7338
break;
@@ -8787,8 +8808,8 @@ td::Result<td_api::object_ptr<td_api::InputInlineQueryResult>> Client::get_inlin
8787
8808
8788
8809
if (input_message_content == nullptr) {
8789
8810
input_message_content = make_object<td_api::inputMessageVideo>(
8790
- nullptr, nullptr, td::vector<int32>(), video_duration, video_width, video_height, false, std::move(caption) ,
8791
- show_caption_above_media, nullptr, false);
8811
+ nullptr, nullptr, nullptr, 0, td::vector<int32>(), video_duration, video_width, video_height, false,
8812
+ std::move(caption), show_caption_above_media, nullptr, false);
8792
8813
}
8793
8814
return make_object<td_api::inputInlineQueryResultVideo>(id, title, description, thumbnail_url, video_url, mime_type,
8794
8815
video_width, video_height, video_duration,
@@ -9793,7 +9814,7 @@ td::Result<td_api::object_ptr<td_api::InputMessageContent>> Client::get_input_me
9793
9814
height = td::clamp(height, 0, MAX_LENGTH);
9794
9815
duration = td::clamp(duration, 0, MAX_DURATION);
9795
9816
9796
- return make_object<td_api::inputMessageVideo>(std::move(input_file), std::move(input_thumbnail),
9817
+ return make_object<td_api::inputMessageVideo>(std::move(input_file), std::move(input_thumbnail), nullptr, 0,
9797
9818
td::vector<int32>(), duration, width, height, supports_streaming,
9798
9819
std::move(caption), show_caption_above_media, nullptr, has_spoiler);
9799
9820
}
@@ -9912,7 +9933,7 @@ td::Result<td_api::object_ptr<td_api::inputPaidMedia>> Client::get_input_paid_me
9912
9933
TRY_RESULT(duration, object.get_optional_int_field("duration"));
9913
9934
TRY_RESULT(supports_streaming, object.get_optional_bool_field("supports_streaming"));
9914
9935
duration = td::clamp(duration, 0, MAX_DURATION);
9915
- media_type = make_object<td_api::inputPaidMediaTypeVideo>(duration, supports_streaming);
9936
+ media_type = make_object<td_api::inputPaidMediaTypeVideo>(nullptr, 0, duration, supports_streaming);
9916
9937
} else {
9917
9938
return td::Status::Error(PSLICE() << "type \"" << type << "\" is unsupported");
9918
9939
}
@@ -10643,7 +10664,7 @@ td::Status Client::process_send_video_query(PromisedQueryPtr &query) {
10643
10664
auto show_caption_above_media = to_bool(query->arg("show_caption_above_media"));
10644
10665
auto has_spoiler = to_bool(query->arg("has_spoiler"));
10645
10666
do_send_message(make_object<td_api::inputMessageVideo>(
10646
- std::move(video), std::move(thumbnail), td::vector<int32>(), duration, width, height,
10667
+ std::move(video), std::move(thumbnail), nullptr, 0, td::vector<int32>(), duration, width, height,
10647
10668
supports_streaming, std::move(caption), show_caption_above_media, nullptr, has_spoiler),
10648
10669
std::move(query));
10649
10670
return td::Status::OK();
@@ -10833,8 +10854,9 @@ td::Status Client::process_copy_message_query(PromisedQueryPtr &query) {
10833
10854
check_message(
10834
10855
from_chat_id, message_id, false, AccessRights::Read, "message to copy", std::move(query),
10835
10856
[this, options = std::move(options)](int64 from_chat_id, int64 message_id, PromisedQueryPtr query) mutable {
10836
- do_send_message(make_object<td_api::inputMessageForwarded>(from_chat_id, message_id, false, std::move(options)),
10837
- std::move(query));
10857
+ do_send_message(
10858
+ make_object<td_api::inputMessageForwarded>(from_chat_id, message_id, false, false, 0, std::move(options)),
10859
+ std::move(query));
10838
10860
});
10839
10861
return td::Status::OK();
10840
10862
}
@@ -10890,8 +10912,9 @@ td::Status Client::process_forward_message_query(PromisedQueryPtr &query) {
10890
10912
10891
10913
check_message(from_chat_id, message_id, false, AccessRights::Read, "message to forward", std::move(query),
10892
10914
[this](int64 from_chat_id, int64 message_id, PromisedQueryPtr query) {
10893
- do_send_message(make_object<td_api::inputMessageForwarded>(from_chat_id, message_id, false, nullptr),
10894
- std::move(query));
10915
+ do_send_message(
10916
+ make_object<td_api::inputMessageForwarded>(from_chat_id, message_id, false, false, 0, nullptr),
10917
+ std::move(query));
10895
10918
});
10896
10919
return td::Status::OK();
10897
10920
}
@@ -11394,7 +11417,8 @@ td::Status Client::process_send_gift_query(PromisedQueryPtr &query) {
11394
11417
get_input_entities(query.get(), "text_entities")));
11395
11418
check_user(user_id, std::move(query),
11396
11419
[this, gift_id, pay_for_upgrade, user_id, text = std::move(text)](PromisedQueryPtr query) mutable {
11397
- send_request(make_object<td_api::sendGift>(gift_id, user_id, std::move(text), false, pay_for_upgrade),
11420
+ send_request(make_object<td_api::sendGift>(gift_id, make_object<td_api::messageSenderUser>(user_id),
11421
+ std::move(text), false, pay_for_upgrade),
11398
11422
td::make_unique<TdOnOkQueryCallback>(std::move(query)));
11399
11423
});
11400
11424
return td::Status::OK();
@@ -11718,12 +11742,14 @@ td::Status Client::process_set_user_emoji_status_query(PromisedQueryPtr &query)
11718
11742
check_user(
11719
11743
user_id, std::move(query),
11720
11744
[this, user_id, emoji_status_custom_emoji_id, emoji_status_expiration_date](PromisedQueryPtr query) mutable {
11721
- send_request(make_object<td_api::setUserEmojiStatus>(
11722
- user_id, emoji_status_custom_emoji_id == 0
11723
- ? nullptr
11724
- : make_object<td_api::emojiStatus>(emoji_status_custom_emoji_id,
11725
- emoji_status_expiration_date)),
11726
- td::make_unique<TdOnOkQueryCallback>(std::move(query)));
11745
+ send_request(
11746
+ make_object<td_api::setUserEmojiStatus>(
11747
+ user_id, emoji_status_custom_emoji_id == 0
11748
+ ? nullptr
11749
+ : make_object<td_api::emojiStatus>(
11750
+ make_object<td_api::emojiStatusTypeCustomEmoji>(emoji_status_custom_emoji_id),
11751
+ emoji_status_expiration_date)),
11752
+ td::make_unique<TdOnOkQueryCallback>(std::move(query)));
11727
11753
});
11728
11754
return td::Status::OK();
11729
11755
}
0 commit comments