mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 14:17:12 +02:00
Don't repeat premium stickers in fake-pack.
This commit is contained in:
parent
3165ef9f0b
commit
6fcafeff5b
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue