Browse Source

Bugfix/fix exception in portfolio details endpoint (#3896)

* Fix exception caused by markets and marketsAdvanced

* Update changelog
pull/3905/head
Thomas Kaul 6 months ago
committed by GitHub
parent
commit
73cd2f9cb7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 2
      apps/api/src/app/endpoints/public/public.controller.ts
  3. 4
      apps/api/src/app/portfolio/portfolio.controller.ts

4
CHANGELOG.md

@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Moved the tags from the info to the user service - Moved the tags from the info to the user service
- Switched the `prefer-const` rule from `warn` to `error` in the `eslint` configuration - Switched the `prefer-const` rule from `warn` to `error` in the `eslint` configuration
### Fixed
- Fixed an exception in the portfolio details endpoint caused by a calculation of the allocations by market
## 2.113.0 - 2024-10-06 ## 2.113.0 - 2024-10-06
### Added ### Added

2
apps/api/src/app/endpoints/public/public.controller.ts

@ -76,7 +76,7 @@ export class PublicController {
}) })
]); ]);
Object.values(markets).forEach((market) => { Object.values(markets ?? {}).forEach((market) => {
delete market.valueInBaseCurrency; delete market.valueInBaseCurrency;
}); });

4
apps/api/src/app/portfolio/portfolio.controller.ts

@ -172,10 +172,10 @@ export class PortfolioController {
}) || }) ||
isRestrictedView(this.request.user) isRestrictedView(this.request.user)
) { ) {
Object.values(markets).forEach((market) => { Object.values(markets ?? {}).forEach((market) => {
delete market.valueInBaseCurrency; delete market.valueInBaseCurrency;
}); });
Object.values(marketsAdvanced).forEach((market) => { Object.values(marketsAdvanced ?? {}).forEach((market) => {
delete market.valueInBaseCurrency; delete market.valueInBaseCurrency;
}); });

Loading…
Cancel
Save