Feature/beautify ampersand in asset profile names (#2138)

* Beautify ampersand

* Update changelog
pull/2142/head
Thomas Kaul 11 months ago committed by GitHub
parent 6159f48a62
commit 73b6784e9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Beautified the names with ampersand (`&`) in the asset profile
## 1.287.0 - 2023-07-09
### Changed

@ -135,6 +135,8 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface {
let name = longName;
if (name) {
name = name.replace('&', '&');
name = name.replace('Amundi Index Solutions - ', '');
name = name.replace('iShares ETF (CH) - ', '');
name = name.replace('iShares III Public Limited Company - ', '');

Loading…
Cancel
Save