Don't repeat premium stickers in fake-pack.

This commit is contained in:
John Preston 2022-09-22 14:58:21 +04:00
parent 3165ef9f0b
commit 6fcafeff5b
1 changed files with 6 additions and 2 deletions

View File

@ -2042,8 +2042,12 @@ bool StickersListWidget::appendSet(
for (const auto &sticker : to.back().stickers) {
const auto document = sticker.document;
if (document->isPremiumSticker()) {
to[_premiumsIndex].stickers.push_back(Sticker{ document });
++to[_premiumsIndex].count;
auto &set = to[_premiumsIndex];
auto &list = set.stickers;
if (!ranges::contains(list, document, &Sticker::document)) {
list.push_back(Sticker{ document });
++set.count;
}
}
}
}