Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7e467f9faa18168ddff0607751f3929e4e3e0285
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -65,7 +65,7 @@ namespace MediaBrowser.Api.Tests
// Create the logging config file
// TODO: We shouldn't need to do this since we are only logging to console
Program . InitLoggingConfigFile ( appPaths ) . Wai t( ) ;
Program . InitLoggingConfigFile ( appPaths ) . GetAwaiter( ) . GetResul t( ) ;
// Create a copy of the application configuration to use for startup
var startupConfig = Program . CreateAppConfiguration ( commandLineOpts , appPaths ) ;
@ -95,8 +95,8 @@ namespace MediaBrowser.Api.Tests
// Finish initializing the app host
var appHost = ( CoreAppHost ) testServer . Services . GetRequiredService < IApplicationHost > ( ) ;
appHost . ServiceProvider = testServer . Services ;
appHost . InitializeServices ( ) . Wai t( ) ;
appHost . RunStartupTasksAsync ( ) . Wai t( ) ;
appHost . InitializeServices ( ) . GetAwaiter( ) . GetResul t( ) ;
appHost . RunStartupTasksAsync ( ) . GetAwaiter( ) . GetResul t( ) ;
return testServer ;
}