Browse Source
🤖 Auto commit for release 'develop' on 2025-07-16
pull/896/head
JC5
3 months ago
No known key found for this signature in database
GPG Key ID: 910CF2B5E8B6CC6E
3 changed files with
4 additions and
3 deletions
-
app/Http/Middleware/IsReadyForStep.php
-
app/Services/SimpleFIN/SimpleFINService.php
-
config/importer.php
|
|
@ -364,6 +364,7 @@ trait IsReadyForStep |
|
|
|
case 'map': |
|
|
|
if (session()->has(Constants::MAPPING_COMPLETE_INDICATOR) && true === session()->get(Constants::MAPPING_COMPLETE_INDICATOR)) { |
|
|
|
Log::debug('SimpleFIN: Mapping complete, cannot map again.'); |
|
|
|
|
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -429,13 +429,13 @@ class SimpleFINService |
|
|
|
// throw new ImporterErrorException('SimpleFIN bridge URL not found. Please provide a valid bridge URL.');
|
|
|
|
} |
|
|
|
Log::debug(sprintf('SimpleFIN using user-provided origin: "%s"', $this->bridgeUrl)); |
|
|
|
$parts = parse_url($claimUrl); |
|
|
|
$parts = parse_url($claimUrl); |
|
|
|
Log::debug(sprintf('Parsed $claimUrl parts: %s', json_encode($parts))); |
|
|
|
|
|
|
|
$response = $client->post($claimUrl, [ |
|
|
|
'headers' => [ |
|
|
|
'Content-Length' => '0', |
|
|
|
'Origin' => sprintf('%s://%s', $parts['scheme'] ?? 'https', $parts['host'] ?? 'localhost'), |
|
|
|
'Origin' => sprintf('%s://%s', $parts['scheme'] ?? 'https', $parts['host'] ?? 'localhost'), |
|
|
|
// 'Origin' => $this->bridgeUrl,
|
|
|
|
], |
|
|
|
]); |
|
|
|
|
|
@ -25,7 +25,7 @@ declare(strict_types=1); |
|
|
|
|
|
|
|
return [ |
|
|
|
'version' => 'develop/2025-07-16', |
|
|
|
'build_time' => 1752675008, |
|
|
|
'build_time' => 1752680881, |
|
|
|
'flows' => ['nordigen', 'spectre', 'file', 'simplefin'], |
|
|
|
'enabled_flows' => [ |
|
|
|
'nordigen' => true, |
|
|
|