mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
Small bugfix in AbnAmroImport specific
This commit is contained in:
parent
bcaca0eca3
commit
ec1bb300e2
@ -95,8 +95,12 @@ class AbnAmroDescription extends Specifix implements SpecifixInterface
|
||||
|
||||
// description and opposing account will be the same.
|
||||
$this->data['opposing-account-name'] = $matches[4];
|
||||
$this->data['description'] = $matches[4];
|
||||
|
||||
|
||||
if( $matches[1] == 'GEA' ) {
|
||||
$this->data['description'] = 'GEA ' . $matches[4];
|
||||
} else {
|
||||
$this->data['description'] = $matches[4];
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user