From cd986d6f5d8a94e889459e9f828e90bdbb12bac2 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 22 Jul 2016 14:59:35 +0300 Subject: [PATCH] Fixed archived stickers loading. --- Telegram/SourceFiles/boxes/stickersetbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/boxes/stickersetbox.cpp b/Telegram/SourceFiles/boxes/stickersetbox.cpp index 2d8d02d19..7891ed634 100644 --- a/Telegram/SourceFiles/boxes/stickersetbox.cpp +++ b/Telegram/SourceFiles/boxes/stickersetbox.cpp @@ -1317,7 +1317,7 @@ void StickersBox::getArchivedDone(uint64 offsetId, const MTPmessages_ArchivedSti if (auto set = Stickers::feedSet(stickerSet.c_stickerSet())) { auto index = archived.indexOf(set->id); - if (index != archived.size() - 1) { + if (archived.isEmpty() || index != archived.size() - 1) { if (index < archived.size() - 1) { archived.removeAt(index); }