Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
apps/api/src/services/data-gathering.service.ts
|
@ -242,7 +242,7 @@ export class DataGatheringService { |
|
|
try { |
|
|
try { |
|
|
currentData[symbol] = await dataEnhancer.enhance({ |
|
|
currentData[symbol] = await dataEnhancer.enhance({ |
|
|
response, |
|
|
response, |
|
|
symbol: symbolMapping[dataEnhancer.getName()] ?? symbol |
|
|
symbol: symbolMapping?.[dataEnhancer.getName()] ?? symbol |
|
|
}); |
|
|
}); |
|
|
} catch (error) { |
|
|
} catch (error) { |
|
|
Logger.error(`Failed to enhance data for symbol ${symbol}`, error); |
|
|
Logger.error(`Failed to enhance data for symbol ${symbol}`, error); |
|
|