Merge pull request #10404 from turbo124/v5-develop

v5.11.2
This commit is contained in:
David Bomba 2024-12-18 20:21:33 +11:00 committed by GitHub
commit c8d95f52ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
5.11.1
5.11.2

View File

@ -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];
}
}

View File

@ -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();

View File

@ -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),