Enable repairing of all FileSource types.
GitOrigin-RevId: 3769adf7c9fd149b39f8ff9e7f7f8777d61b34d8
This commit is contained in:
parent
14a9580a88
commit
730466e328
@ -410,7 +410,7 @@ void AnimationsManager::reload_saved_animations(bool force) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void AnimationsManager::reload_saved_animations(Promise<Unit> &&promise) {
|
void AnimationsManager::reload_saved_animations_force(Promise<Unit> &&promise) {
|
||||||
if (td_->auth_manager_->is_bot()) {
|
if (td_->auth_manager_->is_bot()) {
|
||||||
return promise.set_error(Status::Error(400, "Bots has no saved animations"));
|
return promise.set_error(Status::Error(400, "Bots has no saved animations"));
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ class AnimationsManager : public Actor {
|
|||||||
|
|
||||||
void reload_saved_animations(bool force);
|
void reload_saved_animations(bool force);
|
||||||
|
|
||||||
void reload_saved_animations(Promise<Unit> &&promise);
|
void reload_saved_animations_force(Promise<Unit> &&promise);
|
||||||
|
|
||||||
void on_get_saved_animations(bool is_reload, tl_object_ptr<telegram_api::messages_SavedGifs> &&saved_animations_ptr);
|
void on_get_saved_animations(bool is_reload, tl_object_ptr<telegram_api::messages_SavedGifs> &&saved_animations_ptr);
|
||||||
|
|
||||||
|
@ -178,32 +178,26 @@ void FileReferenceManager::send_query(Destination dest, FileSourceId file_source
|
|||||||
vector<FullMessageId>{source.full_message_id}, std::move(promise), nullptr);
|
vector<FullMessageId>{source.full_message_id}, std::move(promise), nullptr);
|
||||||
},
|
},
|
||||||
[&](const FileSourceUserPhoto &source) {
|
[&](const FileSourceUserPhoto &source) {
|
||||||
// send_closure_later(G()->contacts_manager(), &ContactsManager::get_user_photo_from_server, source.user_id,
|
send_closure_later(G()->contacts_manager(), &ContactsManager::reload_user_profile_photo, source.user_id,
|
||||||
// source.photo_id, std::move(promise));
|
source.photo_id, std::move(promise));
|
||||||
},
|
},
|
||||||
[&](const FileSourceChatPhoto &source) {
|
[&](const FileSourceChatPhoto &source) {
|
||||||
// send_closure_later(G()->contacts_manager(), &ContactsManager::get_chat_photo_from_server, source.chat_id,
|
send_closure_later(G()->contacts_manager(), &ContactsManager::reload_chat, source.chat_id, std::move(promise));
|
||||||
// std::move(promise));
|
|
||||||
},
|
},
|
||||||
[&](const FileSourceChannelPhoto &source) {
|
[&](const FileSourceChannelPhoto &source) {
|
||||||
// send_closure_later(G()->contacts_manager(), &ContactsManager::get_channel_photo_from_server,
|
send_closure_later(G()->contacts_manager(), &ContactsManager::reload_channel, source.channel_id,
|
||||||
// source.channel_id, std::move(promise));
|
std::move(promise));
|
||||||
},
|
},
|
||||||
[&](const FileSourceWallpapers &source) {
|
[&](const FileSourceWallpapers &source) {
|
||||||
// send_closure_later(G()->wallpaper_manager(), &WallpaperManager::get_wallpapers_from_server,
|
send_closure_later(G()->wallpaper_manager(), &WallpaperManager::reload_wallpapers, std::move(promise));
|
||||||
// std::move(promise));
|
|
||||||
},
|
},
|
||||||
[&](const FileSourceWebPage &source) {
|
[&](const FileSourceWebPage &source) {
|
||||||
send_closure_later(G()->web_pages_manager(), &WebPagesManager::reload_web_page_by_url, source.url,
|
send_closure_later(G()->web_pages_manager(), &WebPagesManager::reload_web_page_by_url, source.url,
|
||||||
std::move(promise));
|
std::move(promise));
|
||||||
},
|
},
|
||||||
[&](const FileSourceSavedAnimations &source) {
|
[&](const FileSourceSavedAnimations &source) {
|
||||||
/*
|
send_closure_later(G()->animations_manager(), &AnimationsManager::reload_saved_animations_force,
|
||||||
// TODO this is wrong, because we shouldn't pass animations hash to the call
|
std::move(promise));
|
||||||
// we also sometimes need to do two simultaneous calls one with and one without hash
|
|
||||||
send_closure_later(G()->animations_manager(), &AnimationsManager::reload_saved_animations,
|
|
||||||
true, std::move(promise));
|
|
||||||
*/
|
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user