Fix ACH validation

This commit is contained in:
Hillel Coren 2017-06-01 21:36:39 +03:00
parent d40e4008da
commit 91b023ecde

View File

@ -280,7 +280,7 @@ class StripePaymentDriver extends BasePaymentDriver
'amounts[]=' . intval($amount1) . '&amounts[]=' . intval($amount2)
);
if (is_string($result)) {
if (is_string($result) && $result != 'This bank account has already been verified.') {
return $result;
}