Update TDLib to 1.8.54.

main
levlam 9 months ago
parent e45a6ab5d0
commit 460f8bb219

2
td

@ -1 +1 @@
Subproject commit 1a7acf081e34836984942800bfa8eda72a61579a Subproject commit 6dca40bdaac8b5e66c7a793727bf3f81e9711f70

@ -2742,6 +2742,9 @@ class Client::JsonUniqueGiftMessage final : public td::Jsonable {
} }
break; break;
} }
case td_api::upgradedGiftOriginPrepaidUpgrade::ID:
object("origin", "gifted_upgrade");
break;
default: default:
UNREACHABLE(); UNREACHABLE();
} }
@ -13457,7 +13460,7 @@ td::Status Client::process_get_business_account_gifts_query(PromisedQueryPtr &qu
send_request(make_object<td_api::getReceivedGifts>( send_request(make_object<td_api::getReceivedGifts>(
business_connection->id_, make_object<td_api::messageSenderUser>(my_id_), business_connection->id_, make_object<td_api::messageSenderUser>(my_id_),
0, exclude_unsaved, exclude_saved, exclude_unlimited, exclude_limited, 0, exclude_unsaved, exclude_saved, exclude_unlimited, exclude_limited,
exclude_upgraded, sort_by_price, offset.str(), limit), exclude_limited, exclude_upgraded, sort_by_price, offset.str(), limit),
td::make_unique<TdOnGetReceivedGiftsCallback>(this, std::move(query))); td::make_unique<TdOnGetReceivedGiftsCallback>(this, std::move(query)));
}); });
return td::Status::OK(); return td::Status::OK();

Loading…
Cancel
Save