mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-01 15:15:13 +00:00
Correctly show premium promo for custom reactions.
This commit is contained in:
@@ -375,7 +375,9 @@ bool ShowReactPremiumError(
|
||||
Data::Reactions::Type::Active);
|
||||
const auto i = ranges::find(list, id, &Data::Reaction::id);
|
||||
if (i == end(list) || !i->premium) {
|
||||
return false;
|
||||
if (!id.custom()) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
ShowPremiumPreviewBox(
|
||||
controller,
|
||||
|
Reference in New Issue
Block a user