mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Fix a bug where the importer was unable to create new currencies.
This commit is contained in:
@@ -80,6 +80,7 @@ class CurrencyMapper
|
|||||||
'code' => $data['code'],
|
'code' => $data['code'],
|
||||||
'name' => $data['name'] ?? $data['code'],
|
'name' => $data['name'] ?? $data['code'],
|
||||||
'symbol' => $data['symbol'] ?? $data['code'],
|
'symbol' => $data['symbol'] ?? $data['code'],
|
||||||
|
'enabled' => true,
|
||||||
'decimal_places' => 2,
|
'decimal_places' => 2,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user