Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from ghostfolio:main #508

Merged
merged 2 commits into from
Mar 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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

- Improved the symbol lookup in the _Trackinsight_ data enhancer for asset profile data

### Fixed

- Handled an exception in the benchmark service related to unnamed asset profiles

## 2.142.0 - 2025-02-28

### Added
Expand Down
4 changes: 3 additions & 1 deletion apps/api/src/services/benchmark/benchmark.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,9 @@ export class BenchmarkService {
symbol
};
})
.sort((a, b) => a.name.localeCompare(b.name));
.sort((a, b) => {
return a.name?.localeCompare(b?.name) ?? 0;
});
}

public async addBenchmark({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,10 @@ export class TrackinsightDataEnhancerService implements DataEnhancerInterface {
.then((jsonRes) => {
if (
jsonRes['results']?.['count'] === 1 ||
jsonRes['results']?.['docs']?.[0]?.['ticker'] === symbol
// Allow exact match
jsonRes['results']?.['docs']?.[0]?.['ticker'] === symbol ||
// Allow EXCHANGE:SYMBOL
jsonRes['results']?.['docs']?.[0]?.['ticker']?.endsWith(`:${symbol}`)
) {
return jsonRes['results']['docs'][0]['ticker'];
}
Expand Down
Loading