Browse Source
Bugfix/fix addition of manual asset without market data (#3516)
* Provide default value
* Update changelog
pull/3515/head
Thomas Kaul
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
3 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/manual/manual.service.ts
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Changed the mechanism of the `INTRADAY` data gathering to persist data only if the market state is `OPEN` |
|
|
|
- Fixed the creation of activities with `MANUAL` data source (with no historical market data) |
|
|
|
|
|
|
|
## 2.90.0 - 2024-06-22 |
|
|
|
|
|
|
|
|
|
@ -167,9 +167,10 @@ export class ManualService implements DataProviderInterface { |
|
|
|
}); |
|
|
|
|
|
|
|
for (const { currency, symbol } of symbolProfiles) { |
|
|
|
let marketPrice = marketData.find((marketDataItem) => { |
|
|
|
return marketDataItem.symbol === symbol; |
|
|
|
})?.marketPrice; |
|
|
|
let marketPrice = |
|
|
|
marketData.find((marketDataItem) => { |
|
|
|
return marketDataItem.symbol === symbol; |
|
|
|
})?.marketPrice ?? 0; |
|
|
|
|
|
|
|
response[symbol] = { |
|
|
|
currency, |
|
|
|