Fix getAttachedStickerSets for photos.
GitOrigin-RevId: a96584c9cc797f7e15d850af0a5c4c5d73b3d1ac
This commit is contained in:
parent
43d8728829
commit
dbcbacea9a
@ -2884,7 +2884,8 @@ vector<int64> StickersManager::get_attached_sticker_sets(FileId file_id, Promise
|
||||
promise.set_error(Status::Error(5, "File not found"));
|
||||
return {};
|
||||
}
|
||||
if (!file_view.has_remote_location() || !file_view.remote_location().is_document() ||
|
||||
if (!file_view.has_remote_location() ||
|
||||
(!file_view.remote_location().is_document() && !file_view.remote_location().is_photo()) ||
|
||||
file_view.remote_location().is_web()) {
|
||||
promise.set_value(Unit());
|
||||
return {};
|
||||
|
Reference in New Issue
Block a user