mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
Don't repeat premium stickers in fake-pack.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user