From 725fa87188c5734209e12951f4db1a580137894d Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 19 May 2015 18:58:22 +0300 Subject: [PATCH] removing new added stickers from custom --- Telegram/SourceFiles/boxes/stickersetbox.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Telegram/SourceFiles/boxes/stickersetbox.cpp b/Telegram/SourceFiles/boxes/stickersetbox.cpp index ef1c8365d..778355aa8 100644 --- a/Telegram/SourceFiles/boxes/stickersetbox.cpp +++ b/Telegram/SourceFiles/boxes/stickersetbox.cpp @@ -83,7 +83,19 @@ bool StickerSetInner::failedSet(const RPCError &error) { void StickerSetInner::installDone(const MTPBool &result) { StickerSets &sets(cRefStickerSets()); + StickerSets::iterator custom = sets.find(CustomStickerSetId); sets.insert(_setId, StickerSet(_setId, _setAccess, _setTitle, _setShortName)).value().stickers = _pack; + if (custom != sets.cend()) { + for (int32 i = 0, l = _pack.size(); i < l; ++i) { + int32 index = custom->stickers.indexOf(_pack.at(i)); + if (index >= 0) { + custom->stickers.removeAt(index); + } + } + if (custom->stickers.isEmpty()) { + sets.erase(custom); + } + } cSetStickersHash(QByteArray()); Local::writeStickers(); emit installed(_setId);