diff --git a/td/generate/scheme/td_api.tl b/td/generate/scheme/td_api.tl index 22966bbdb..611fe18c3 100644 --- a/td/generate/scheme/td_api.tl +++ b/td/generate/scheme/td_api.tl @@ -2977,15 +2977,15 @@ premiumSourceLink referrer:string = PremiumSource; premiumSourceSettings = PremiumSource; -//@description Describes a promotion video for a Premium feature @feature Premium feature @video Promotion video for the feature -premiumFeaturePromotionVideo feature:PremiumFeature video:video = PremiumFeaturePromotionVideo; +//@description Describes a promotion animation for a Premium feature @feature Premium feature @animation Promotion animation for the feature +premiumFeaturePromotionAnimation feature:PremiumFeature animation:animation = PremiumFeaturePromotionAnimation; //@description Contains state of Telegram Premium subscription and promotion videos for Premium features //@state Text description of the state of the current Premium subscription; may be empty if the current user has no Telegram Premium subscription //@currency ISO 4217 currency code for Telegram Premium subscription payment //@monthly_amount Monthly subscription payment for Telegram Premium subscription, in the smallest units of the currency -//@videos The list of available promotion videos for Premium features -premiumState state:formattedText currency:string monthly_amount:int53 videos:vector = PremiumState; +//@animations The list of available promotion animations for Premium features +premiumState state:formattedText currency:string monthly_amount:int53 animations:vector = PremiumState; //@class DeviceToken @description Represents a data needed to subscribe for push notifications through registerDevice method. To use specific push notification service, the correct application platform must be specified and a valid server authentication data must be uploaded at https://my.telegram.org diff --git a/td/telegram/Premium.cpp b/td/telegram/Premium.cpp index 3990f7f45..cca6ec8d5 100644 --- a/td/telegram/Premium.cpp +++ b/td/telegram/Premium.cpp @@ -6,6 +6,7 @@ // #include "td/telegram/Premium.h" +#include "td/telegram/AnimationsManager.h" #include "td/telegram/Application.h" #include "td/telegram/ConfigShared.h" #include "td/telegram/DialogId.h" @@ -15,7 +16,6 @@ #include "td/telegram/MessageEntity.h" #include "td/telegram/Td.h" #include "td/telegram/telegram_api.h" -#include "td/telegram/VideosManager.h" #include "td/utils/algorithm.h" #include "td/utils/buffer.h" @@ -99,7 +99,7 @@ class GetPremiumPromoQuery final : public Td::ResultHandler { return on_error(Status::Error(500, "Receive invalid currency")); } - vector> videos; + vector> animations; for (size_t i = 0; i < promo->video_sections_.size(); i++) { auto feature = get_premium_feature_object(promo->video_sections_[i]); if (feature == nullptr) { @@ -113,21 +113,21 @@ class GetPremiumPromoQuery final : public Td::ResultHandler { } auto parsed_document = td_->documents_manager_->on_get_document(move_tl_object_as(video), - DialogId(), nullptr, Document::Type::Video); + DialogId(), nullptr, Document::Type::Animation); - if (parsed_document.type != Document::Type::Video) { + if (parsed_document.type != Document::Type::Animation) { LOG(ERROR) << "Receive " << parsed_document.type << " for " << promo->video_sections_[i]; continue; } - auto video_object = td_->videos_manager_->get_video_object(parsed_document.file_id); - videos.push_back( - td_api::make_object(std::move(feature), std::move(video_object))); + auto animation_object = td_->animations_manager_->get_animation_object(parsed_document.file_id); + animations.push_back(td_api::make_object(std::move(feature), + std::move(animation_object))); } promise_.set_value(td_api::make_object(get_formatted_text_object(state, true, 0), std::move(promo->currency_), promo->monthly_amount_, - std::move(videos))); + std::move(animations))); } void on_error(Status status) final {