Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/8cda43bb6352c9442e60a7085821dfc75f0e68d3?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
1 deletions
@ -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/ ),
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 ).
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## Unreleased
### Fixed
- Changed the mechanism of the `INTRADAY` data gathering to persist data only if the market state is `OPEN`
## 2.90.0 - 2024-06-22
## 2.90.0 - 2024-06-22
### Added
### Added
@ -516,7 +516,8 @@ export class DataProviderService {
. filter ( ( symbol ) = > {
. filter ( ( symbol ) = > {
return (
return (
isNumber ( response [ symbol ] . marketPrice ) &&
isNumber ( response [ symbol ] . marketPrice ) &&
response [ symbol ] . marketPrice > 0
response [ symbol ] . marketPrice > 0 &&
response [ symbol ] . marketState === 'open'
) ;
) ;
} )
} )
. map ( ( symbol ) = > {
. map ( ( symbol ) = > {