Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/a3a98c68a567874c3cb56494723cf4b5d4b66822 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix missing currency conversion

pull/239/head
Thomas 4 years ago
parent 21570cca19
commit a3a98c68a5

@ -80,7 +80,11 @@ export class CurrentRateService {
for (const symbol of symbols) {
result.push({
date: today,
marketPrice: dataResultProvider?.[symbol]?.marketPrice ?? 0,
marketPrice: this.exchangeRateDataService.toCurrency(
dataResultProvider?.[symbol]?.marketPrice ?? 0,
dataResultProvider?.[symbol]?.currency,
userCurrency
),
symbol: symbol
});
}

Loading…
Cancel
Save