From 23fd7cb7cdd3a85d0441adc69dbd6414b2c1ed45 Mon Sep 17 00:00:00 2001 From: Sebastian Wolf Date: Sat, 13 Feb 2021 20:01:42 +0100 Subject: [PATCH] Potentially fix another bug --- src/stickermanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stickermanager.cpp b/src/stickermanager.cpp index 748ae7c..6019e7d 100644 --- a/src/stickermanager.cpp +++ b/src/stickermanager.cpp @@ -129,7 +129,7 @@ void StickerManager::handleStickerSetsReceived(const QVariantList &stickerSets) this->stickerSetMap.clear(); while (stickerSetIdIterator.hasNext()) { QString stickerSetId = stickerSetIdIterator.next().toString(); - if (this->installedStickerSetIds.contains(stickerSetId)) { + if (this->stickerSets.contains(stickerSetId)) { this->installedStickerSets.append(this->stickerSets.value(stickerSetId)); this->stickerSetMap.insert(stickerSetId, i); i++;