Browse Source

Bugfix/Handle exception in historical market data gathering of derived currencies (#3858)

* Handle exception in historical market data gathering of derived currencies

* Update changelog

---------

Co-authored-by: Dan <dan@ddev.ch>
pull/3828/merge
dandevaud 16 hours ago
committed by GitHub
parent
commit
252fb3fe11
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 10
      apps/api/src/services/data-provider/data-provider.service.ts

6
CHANGELOG.md

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Handled an exception in the historical market data gathering of derived currencies
## 2.112.0 - 2024-10-03
### Added

10
apps/api/src/services/data-provider/data-provider.service.ts

@ -666,9 +666,13 @@ export class DataProviderService {
} = {};
for (const date in rootData) {
data[date] = {
marketPrice: new Big(factor).mul(rootData[date].marketPrice).toNumber()
};
if (isNumber(rootData[date].marketPrice)) {
data[date] = {
marketPrice: new Big(factor)
.mul(rootData[date].marketPrice)
.toNumber()
};
}
}
return data;

Loading…
Cancel
Save