From 24dc6dbfae2823d130c46a5b0083b344f8c96d8f Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 2 Apr 2024 14:19:51 +1100 Subject: [PATCH] Remove trial limits on isPaid() --- app/Models/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Account.php b/app/Models/Account.php index adf95c62086f..c2e099bf8366 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -291,7 +291,7 @@ class Account extends BaseModel public function isPaid(): bool { - return Ninja::isNinja() ? ($this->isPaidHostedClient() && !$this->isTrial()) : $this->hasFeature(self::FEATURE_WHITE_LABEL); + return Ninja::isNinja() ? $this->isPaidHostedClient() : $this->hasFeature(self::FEATURE_WHITE_LABEL); } public function isPremium(): bool