commit
c8d95f52ac
|
|
@ -1 +1 @@
|
|||
5.11.1
|
||||
5.11.2
|
||||
|
|
@ -108,7 +108,7 @@ class Nordigen
|
|||
} catch (\Exception $e) {
|
||||
|
||||
nlog("Nordigen getAccount() failed => {$account_id} => " . $e->getMessage());
|
||||
return ['error' => $e->getMessage()];
|
||||
return ['error' => $e->getMessage(), 'requisition' => true];
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -278,7 +278,7 @@ class BankIntegrationController extends BaseController
|
|||
$is_account_active = $nordigen->isAccountActive($bank_integration->nordigen_account_id);
|
||||
$account = $nordigen->getAccount($bank_integration->nordigen_account_id);
|
||||
|
||||
if (!$is_account_active || !$account) {
|
||||
if (!$is_account_active || !$account || isset($account['requisition'])) {
|
||||
$bank_integration->disabled_upstream = true;
|
||||
$bank_integration->save();
|
||||
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ return [
|
|||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => env('APP_VERSION', '5.11.1'),
|
||||
'app_tag' => env('APP_TAG', '5.11.1'),
|
||||
'app_version' => env('APP_VERSION', '5.11.2'),
|
||||
'app_tag' => env('APP_TAG', '5.11.2'),
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', false),
|
||||
|
|
|
|||
Loading…
Reference in New Issue