From e0385b396dbc571e46c65fe37b75737c657a304a Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 4 Feb 2018 10:53:43 +0200 Subject: [PATCH] Show email footer during trial --- 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 a0bfc05c4137e..86c0de60ec6d0 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -1099,7 +1099,7 @@ class Account extends Eloquent public function isPaid() { - return Utils::isNinja() ? $this->isPro() : Utils::isWhiteLabel(); + return Utils::isNinja() ? ($this->isPro() && ! $this->isTrial()) : Utils::isWhiteLabel(); } /**