diff --git a/app/Models/Account.php b/app/Models/Account.php index d2b41875e7..ce8622855b 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -907,7 +907,7 @@ class Account extends Eloquent $available = true; foreach ($gatewayTypes as $type) { - if ($type != GATEWAY_TYPE_TOKEN && $paymentDriver->handles($type)) { + if ($paymentDriver->handles($type)) { $available = false; break; }