diff --git a/app/Models/Account.php b/app/Models/Account.php index 79ec7439a69b..268317681fa7 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -207,7 +207,7 @@ class Account extends BaseModel return false; } - return $this->plan == 'free'; + return $this->plan == 'free' || is_null($this->plan); } public function isEnterpriseClient()