Browse Source
Merge branch 'main' into feature/improve-language-localization-for-german-20230903
pull/2294/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/import/import.service.ts
|
|
@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the validation in the activities import |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
- Refreshed the cryptocurrencies list |
|
|
|
|
|
|
|
|
|
@ -566,7 +566,7 @@ export class ImportService { |
|
|
|
]) |
|
|
|
)?.[symbol]; |
|
|
|
|
|
|
|
if (!assetProfile) { |
|
|
|
if (!assetProfile?.name) { |
|
|
|
throw new Error( |
|
|
|
`activities.${index}.symbol ("${symbol}") is not valid for the specified data source ("${dataSource}")` |
|
|
|
); |
|
|
|