Fix getAttachedStickerSets for photos.

GitOrigin-RevId: a96584c9cc797f7e15d850af0a5c4c5d73b3d1ac
This commit is contained in:
levlam 2018-10-01 14:34:42 +03:00
parent 43d8728829
commit dbcbacea9a
1 changed files with 2 additions and 1 deletions

View File

@ -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 {};