Browse Source
Bugfix/fix exception in get asset profile functionality of FMP service (#5663)
* Add missing guard
* Update changelog
pull/5644/head
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the usability of the _Cancel_ / _Close_ buttons in the create watchlist item dialog |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Handled an exception in the get asset profile functionality of the _Financial Modeling Prep_ service |
|
|
|
|
|
|
|
## 2.205.0 - 2025-10-01 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
@ -161,7 +161,7 @@ export class FinancialModelingPrepService implements DataProviderInterface { |
|
|
|
} |
|
|
|
).then((res) => res.json()); |
|
|
|
|
|
|
|
if (etfInformation.website) { |
|
|
|
if (etfInformation?.website) { |
|
|
|
response.url = etfInformation.website; |
|
|
|
} |
|
|
|
|
|
|
|