Browse Source

Merge 8f6d66a34b into 0512b8ee51

pull/6751/merge
Venkateswarlu Boggavarapu 9 hours ago
committed by GitHub
parent
commit
13971760a4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts

6
apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts

@ -363,7 +363,11 @@ export class ExchangeRateDataService {
)}` )}`
); );
return undefined; Logger.warn(
`No exchange rate data found for ${aFromCurrency} -> ${aToCurrency} on ${aDate.toISOString()}, returning original value as fallback`,
'ExchangeRateDataService'
);
return aValue;
} }
private async getExchangeRates({ private async getExchangeRates({

Loading…
Cancel
Save