File tree 2 files changed +8
-0
lines changed
apps/api/src/services/data-provider/data-enhancer/yahoo-finance
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## Unreleased
9
+
10
+ ### Changed
11
+
12
+ - Improved the symbol validation in the _ Yahoo Finance_ service (get asset profiles)
13
+
8
14
## 2.146.0 - 2025-03-15
9
15
10
16
### Changed
Original file line number Diff line number Diff line change @@ -170,6 +170,8 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface {
170
170
symbol = quotes [ 0 ] . symbol ;
171
171
}
172
172
} catch { }
173
+ } else if ( symbol ?. includes ( '-' ) ) {
174
+ throw new Error ( `${ symbol } is not valid` ) ;
173
175
} else {
174
176
symbol = this . convertToYahooFinanceSymbol ( symbol ) ;
175
177
}
You can’t perform that action at this time.
0 commit comments