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>
This commit is contained in:
parent
c4742d3a53
commit
252fb3fe11
@ -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/),
|
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).
|
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
|
## 2.112.0 - 2024-10-03
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -666,9 +666,13 @@ export class DataProviderService {
|
|||||||
} = {};
|
} = {};
|
||||||
|
|
||||||
for (const date in rootData) {
|
for (const date in rootData) {
|
||||||
data[date] = {
|
if (isNumber(rootData[date].marketPrice)) {
|
||||||
marketPrice: new Big(factor).mul(rootData[date].marketPrice).toNumber()
|
data[date] = {
|
||||||
};
|
marketPrice: new Big(factor)
|
||||||
|
.mul(rootData[date].marketPrice)
|
||||||
|
.toNumber()
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user