Skip to content

Commit ed3b482

Browse files
committed
Merge branch 'release/v1.3.3'
2 parents 4b285c3 + c8a707e commit ed3b482

4 files changed

Lines changed: 14 additions & 9 deletions

File tree

app/Services/Camt/Conversion/TransactionMapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ private function determineTransactionType(array $current): string
9595
app('log')->debug(sprintf('Found direction is null, but accountType[%s] is not null, so we skip.', $direction));
9696
}
9797
if(null !== $foundDirection && null !== $accountType[$direction] && $foundDirection !== $accountType[$direction]) {
98-
app('log')->debug(sprintf('Found direction "%s" overrules accountType[%s] "%".', $foundDirection, $direction, $accountType[$direction]));
98+
app('log')->debug(sprintf('Found direction "%s" overrules accountType[%s] "%s".', $foundDirection, $direction, $accountType[$direction]));
9999
$accountType[$direction] = $foundDirection;
100100
}
101101
if(null === $accountType[$direction]) {

changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## 1.3.3 - 2021-07-17
6+
7+
### Fixed
8+
- Formatting issue in debug log message broke the CAMT import
9+
510
## 1.3.2 - 2023-07-16
611

712
### Added
@@ -12,7 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1217

1318
### Fixed
1419
- [Issue 7729](https://github.com/firefly-iii/firefly-iii/issues/7729) Make sure account type detection can't be overruled by later attempts.
15-
- [Issue 7747](https://github.com/firefly-iii/firefly-iii/issues/7747) Nullpointer in CAMT import
20+
- [Issue 7747](https://github.com/firefly-iii/firefly-iii/issues/7747) Nullpointer in CAMT import
1621

1722
## 1.3.1 - 2021-06-27=8
1823

composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/importer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
declare(strict_types=1);
2424

2525
return [
26-
'version' => '1.3.2',
26+
'version' => '1.3.3',
2727
'flows' => ['nordigen', 'spectre', 'file'],
2828
'flow_titles' => [
2929
'file' => 'File',

0 commit comments

Comments
 (0)