Browse Source
Bugfix/do not skip manual data source part 2 (#1732)
* Do not skip MANUAL data source
* Update changelog
pull/1733/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
1 additions and
10 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-gathering.service.ts
|
|
@ -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 |
|
|
|
|
|
|
|
|
|
@ -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' |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|