James Cole
4 years ago
No known key found for this signature in database
GPG Key ID: BDE6667570EADBD5
4 changed files with
10 additions and
3 deletions
-
app/Http/Controllers/Import/UploadController.php
-
app/Services/Nordigen/Model/Account.php
-
changelog.md
-
config/importer.php
|
|
|
@ -154,7 +154,7 @@ class UploadController extends Controller |
|
|
|
$content = file_get_contents($file->getPathname()); |
|
|
|
|
|
|
|
// https://stackoverflow.com/questions/11066857/detect-eol-type-using-php
|
|
|
|
// because apparantly there are banks that use "\r" as newline. Looking at the morons of KBC Bank, Belgium.
|
|
|
|
// because apparently there are banks that use "\r" as newline. Looking at the morons of KBC Bank, Belgium.
|
|
|
|
// This one is for you: 🤦♀️
|
|
|
|
$eol = $this->detectEOL($content); |
|
|
|
if ("\r" === $eol) { |
|
|
|
|
|
|
|
@ -40,7 +40,7 @@ class Account |
|
|
|
private string $linkedAccounts; |
|
|
|
private string $msisdn; |
|
|
|
private string $name; |
|
|
|
private array $ownerAddressUnstructured; |
|
|
|
private array $ownerAddressUnstructured; |
|
|
|
private string $ownerName; |
|
|
|
private string $product; |
|
|
|
private string $resourceId; |
|
|
|
|
|
|
|
@ -2,6 +2,13 @@ |
|
|
|
All notable changes to this project will be documented in this file. |
|
|
|
This project adheres to [Semantic Versioning](http://semver.org/). |
|
|
|
|
|
|
|
## 0.6.2 - 2022-01-09 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- #5507 `ownerAddressUnstructured` field is of the wrong data type. |
|
|
|
- Version 0.6.1 also reports as 0.6.0. |
|
|
|
|
|
|
|
## 0.6.1 - 2022-01-08 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
@ -23,7 +23,7 @@ |
|
|
|
declare(strict_types=1); |
|
|
|
|
|
|
|
return [ |
|
|
|
'version' => '0.6.0', |
|
|
|
'version' => '0.6.2', |
|
|
|
'flows' => ['nordigen', 'spectre', 'csv'], |
|
|
|
'flow_titles' => [ |
|
|
|
'csv' => 'CSV', |
|
|
|
|