From cd24252d68e6d51caf61b456fa24372ddee999b0 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 9 Jun 2023 21:17:43 +1000 Subject: [PATCH] fixes for trials --- 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 ab58b329738e..4e18792f8a62 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -621,7 +621,7 @@ class Account extends BaseModel public function getTrialDays() { - if ($this->payment_id) { + if ($this->payment_id || $this->is_migrated) { return 0; }