From 684c1e55b0c79ea7904ac150e206713f060024b9 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 19 Feb 2023 19:24:52 +0100 Subject: [PATCH] Bugfix/do not skip manual data source part 2 (#1732) * Do not skip MANUAL data source * Update changelog --- CHANGELOG.md | 1 + apps/api/src/services/data-gathering.service.ts | 10 ---------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 556c578bb..5860ba05a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixed an issue with exact matches in the activities table filter (`VT` vs. `VTI`) +- Fixed an issue in the data gathering service (do not skip `MANUAL` data source) ## 1.236.0 - 2023-02-17 diff --git a/apps/api/src/services/data-gathering.service.ts b/apps/api/src/services/data-gathering.service.ts index 236016579..d3843456d 100644 --- a/apps/api/src/services/data-gathering.service.ts +++ b/apps/api/src/services/data-gathering.service.ts @@ -249,11 +249,6 @@ export class DataGatheringService { }, scraperConfiguration: true, symbol: true - }, - where: { - dataSource: { - not: 'MANUAL' - } } }) ).map((symbolProfile) => { @@ -295,11 +290,6 @@ export class DataGatheringService { dataSource: true, scraperConfiguration: true, symbol: true - }, - where: { - dataSource: { - not: 'MANUAL' - } } });