Just log and return false.

This commit is contained in:
James Cole 2021-08-11 19:44:22 +02:00
parent f741d05f94
commit b1ea497262

View File

@ -194,7 +194,7 @@ class FireflyValidator extends Validator
$message = sprintf('Could not validate IBAN check value "%s" (IBAN "%s")', $iban, $value);
Log::error($message);
Log::error($e->getTraceAsString());
throw new FireflyException($message, 0, $e);
return false;
}
return 1 === (int)$checksum;