Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/0a83bcd697729d2a08db4e2d3532a1bc8a267b73
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
57 additions and
8 deletions
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the error log for a timeout in the data source request
- Improved the language localization for German (`de`)
- Upgraded `angular` from version `16.2.12` to `17.0.4`
- Upgraded `Nx` from version `17.0.2` to `17.1.3`
@ -56,7 +56,13 @@ export class CoinGeckoService implements DataProviderInterface {
response . name = name ;
} catch ( error ) {
Logger . error ( error , 'CoinGeckoService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'CoinGeckoService' ) ;
}
return response ;
@ -174,7 +180,13 @@ export class CoinGeckoService implements DataProviderInterface {
} ;
}
} catch ( error ) {
Logger . error ( error , 'CoinGeckoService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'CoinGeckoService' ) ;
}
return response ;
@ -216,7 +228,13 @@ export class CoinGeckoService implements DataProviderInterface {
} ;
} ) ;
} catch ( error ) {
Logger . error ( error , 'CoinGeckoService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'CoinGeckoService' ) ;
}
return { items } ;
@ -229,7 +229,13 @@ export class EodHistoricalDataService implements DataProviderInterface {
return response ;
} catch ( error ) {
Logger . error ( error , 'EodHistoricalDataService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'EodHistoricalDataService' ) ;
}
return { } ;
@ -382,7 +388,13 @@ export class EodHistoricalDataService implements DataProviderInterface {
}
) ;
} catch ( error ) {
Logger . error ( error , 'EodHistoricalDataService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'EodHistoricalDataService' ) ;
}
return searchResult ;
@ -151,7 +151,13 @@ export class FinancialModelingPrepService implements DataProviderInterface {
} ;
}
} catch ( error ) {
Logger . error ( error , 'FinancialModelingPrepService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'FinancialModelingPrepService' ) ;
}
return response ;
@ -196,7 +202,13 @@ export class FinancialModelingPrepService implements DataProviderInterface {
} ;
} ) ;
} catch ( error ) {
Logger . error ( error , 'FinancialModelingPrepService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'FinancialModelingPrepService' ) ;
}
return { items } ;
@ -163,7 +163,13 @@ export class RapidApiService implements DataProviderInterface {
return fgi ;
} catch ( error ) {
Logger . error ( error , 'RapidApiService' ) ;
let message = error ;
if ( error ? . code === 'ABORT_ERR' ) {
message = ` RequestError: The operation was aborted because the request to the data provider took more than ${ DEFAULT_REQUEST_TIMEOUT } ms ` ;
}
Logger . error ( message , 'RapidApiService' ) ;
return undefined ;
}