Skip to content

Commit 5783497

Browse files
authored
Feature/improve symbol validation in Yahoo Finance service (ghostfolio#4445)
* Improve symbol validation * Update changelog
1 parent 29b8d63 commit 5783497

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Unreleased
9+
10+
### Changed
11+
12+
- Improved the symbol validation in the _Yahoo Finance_ service (get asset profiles)
13+
814
## 2.146.0 - 2025-03-15
915

1016
### Changed

apps/api/src/services/data-provider/data-enhancer/yahoo-finance/yahoo-finance.service.ts

+2
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface {
170170
symbol = quotes[0].symbol;
171171
}
172172
} catch {}
173+
} else if (symbol?.includes('-')) {
174+
throw new Error(`${symbol} is not valid`);
173175
} else {
174176
symbol = this.convertToYahooFinanceSymbol(symbol);
175177
}

0 commit comments

Comments
 (0)