Fixes for if plan is null

This commit is contained in:
David Bomba 2021-06-08 22:17:19 +10:00
parent 1826ea7db5
commit 8170c395b4

View File

@ -207,7 +207,7 @@ class Account extends BaseModel
return false; return false;
} }
return $this->plan == 'free'; return $this->plan == 'free' || is_null($this->plan);
} }
public function isEnterpriseClient() public function isEnterpriseClient()