mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Fix for default payment method check
This commit is contained in:
parent
0caa865f7d
commit
9bfe233c9f
@ -52,7 +52,11 @@ class AccountGatewayToken extends Eloquent
|
||||
*/
|
||||
public function autoBillLater()
|
||||
{
|
||||
return $this->default_payment_method->requiresDelayedAutoBill();
|
||||
if ($this->default_payment_method) {
|
||||
return $this->default_payment_method->requiresDelayedAutoBill();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user