Browse Source

Fix response of historical market data gathering for a specific date

pull/7717/head
Thomas Kaul 4 days ago
parent
commit
3a26c29a19
  1. 2
      apps/api/src/services/queues/data-gathering/data-gathering.service.ts

2
apps/api/src/services/queues/data-gathering/data-gathering.service.ts

@ -348,7 +348,7 @@ export class DataGatheringService {
});
}
} catch (error) {
this.logger.error(error.message);
this.logger.error(error?.message);
}
return undefined;

Loading…
Cancel
Save