Browse Source

Fix fear and greed index

pull/359/head
Thomas 4 years ago
parent
commit
d5a3942b22
  1. 2
      apps/api/src/app/symbol/symbol.service.ts

2
apps/api/src/app/symbol/symbol.service.ts

@ -17,7 +17,7 @@ export class SymbolService {
const response = await this.dataProviderService.get([aSymbol]);
const { currency, dataSource, marketPrice } = response[aSymbol] ?? {};
if (currency && dataSource && marketPrice) {
if (dataSource && marketPrice) {
return {
dataSource,
marketPrice,

Loading…
Cancel
Save