Browse Source
Bugfix/do not skip manual data source (#1718)
* Do not skip MANUAL data source
* Update changelog
pull/1720/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
4 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-gathering.service.ts
|
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed an issue in the data gathering service (do not skip `MANUAL` data source) |
|
|
|
- Fixed the buying power calculation if no emergency fund is set but an activity is tagged as _Emergency Fund_ |
|
|
|
|
|
|
|
## 1.235.0 - 2023-02-16 |
|
|
|
|
|
@ -207,10 +207,6 @@ export class DataGatheringService { |
|
|
|
|
|
|
|
public async gatherSymbols(aSymbolsWithStartDate: IDataGatheringItem[]) { |
|
|
|
for (const { dataSource, date, symbol } of aSymbolsWithStartDate) { |
|
|
|
if (dataSource === 'MANUAL') { |
|
|
|
continue; |
|
|
|
} |
|
|
|
|
|
|
|
await this.addJobToQueue( |
|
|
|
GATHER_HISTORICAL_MARKET_DATA_PROCESS, |
|
|
|
{ |
|
|
|