2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 22:55:11 +00:00

Don't show premium stickers if premium blocked.

This commit is contained in:
John Preston
2022-06-08 10:28:45 +04:00
parent e925acc622
commit 86889cf1ef
7 changed files with 185 additions and 94 deletions

View File

@@ -224,7 +224,7 @@ bool Session::premium() const {
}
bool Session::premiumPossible() const {
return !_account->appConfig().get<bool>(
return !premium() && !_account->appConfig().get<bool>(
"premium_purchase_blocked",
true);
}