Potentially fix another bug
This commit is contained in:
parent
8fc499582b
commit
23fd7cb7cd
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ void StickerManager::handleStickerSetsReceived(const QVariantList &stickerSets)
|
||||||
this->stickerSetMap.clear();
|
this->stickerSetMap.clear();
|
||||||
while (stickerSetIdIterator.hasNext()) {
|
while (stickerSetIdIterator.hasNext()) {
|
||||||
QString stickerSetId = stickerSetIdIterator.next().toString();
|
QString stickerSetId = stickerSetIdIterator.next().toString();
|
||||||
if (this->installedStickerSetIds.contains(stickerSetId)) {
|
if (this->stickerSets.contains(stickerSetId)) {
|
||||||
this->installedStickerSets.append(this->stickerSets.value(stickerSetId));
|
this->installedStickerSets.append(this->stickerSets.value(stickerSetId));
|
||||||
this->stickerSetMap.insert(stickerSetId, i);
|
this->stickerSetMap.insert(stickerSetId, i);
|
||||||
i++;
|
i++;
|
||||||
|
|
Loading…
Reference in a new issue