Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/ab68c2c69a6d0f45b7a67d03caae9e24e8237325?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
2 deletions
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Supported a manual currency for the activity unit price
- Supported a manual currency for the activity unit price
### Fixed
- Fixed the feature graphic of the _Ghostfolio meets Umbrel_ blog post
## 1.239.0 - 2023-02-25
## 1.239.0 - 2023-02-25
### Added
### Added
@ -91,9 +91,9 @@ export class FrontendMiddleware implements NestMiddleware {
featureGraphicPath = 'assets/images/blog/ghostfolio-x-sackgeld.png' ;
featureGraphicPath = 'assets/images/blog/ghostfolio-x-sackgeld.png' ;
title = ` Ghostfolio auf Sackgeld.com vorgestellt - ${ title } ` ;
title = ` Ghostfolio auf Sackgeld.com vorgestellt - ${ title } ` ;
} else if (
} else if (
request . path . startsWith ( '/ d e/blog/2023/02/ghostfolio-meets-umbrel')
request . path . startsWith ( '/ en /blog/2023/02/ghostfolio-meets-umbrel')
) {
) {
featureGraphicPath = 'assets/images/blog/ghostfolio- meets -umbrel.png';
featureGraphicPath = 'assets/images/blog/ghostfolio- x -umbrel.png';
title = ` Ghostfolio meets Umbrel - ${ title } ` ;
title = ` Ghostfolio meets Umbrel - ${ title } ` ;
}
}