From f9cf373890a586bffe9946b403a9370067b24789 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 31 Aug 2026 19:25:54 +0200 Subject: [PATCH] Bugfix/country mapping of Virgin Islands (British) in FMP service (#7776) * Fix the missing country mapping of Virgin Islands * Update changelog --- CHANGELOG.md | 1 + .../financial-modeling-prep/financial-modeling-prep.service.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f14bb8d9..b1a7c25ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed the cash positions being included in the by continent, by country and by sector charts on the allocations page and the public page - Fixed the allocations in percentage exceeding 100% in the restricted view - Fixed the portfolio calculation for holdings with activities before the first known historical market price by falling back to the unit price of the activity +- Fixed the missing country mapping of _Virgin Islands (British)_ in the _Financial Modeling Prep_ service ## 3.64.0 - 2026-08-30 diff --git a/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts b/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts index 12862937b..ced4db38a 100644 --- a/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts +++ b/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts @@ -59,7 +59,8 @@ export class FinancialModelingPrepService Macau: 'MO', 'Russian Federation': 'RU', 'Taiwan (Province of China)': 'TW', - Turkey: 'TR' + Turkey: 'TR', + 'Virgin Islands (British)': 'VG' }; private readonly logger = new Logger(FinancialModelingPrepService.name);