Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/614edab79f6fa8e04c07bd232dca68df9c773c34
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -1299,7 +1299,7 @@ namespace MediaBrowser.Server.Startup.Common
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task{CheckForUpdateResult}.</returns>
public override async Task < CheckForUpdateResult > CheckForApplicationUpdate ( CancellationToken cancellationToken , IProgress < double > progress )
public override Task < CheckForUpdateResult > CheckForApplicationUpdate ( CancellationToken cancellationToken , IProgress < double > progress )
{
var includePreRelease = false ;
var cacheLength = TimeSpan . FromHours ( 12 ) ;
@ -1323,8 +1323,8 @@ namespace MediaBrowser.Server.Startup.Common
includePreRelease = true ;
}
return await new GithubUpdater ( HttpClient , JsonSerializer , cacheLength )
. CheckForUpdateResult ( "MediaBrowser" , "Emby" , ApplicationVersion , includePreRelease , excludeSuffixes . ToArray ( ) , _releaseAssetFilename , "MBServer" , "Mbserver.zip" , cancellationToken ) .ConfigureAwait ( false ) ;
return new GithubUpdater ( HttpClient , JsonSerializer , cacheLength )
. CheckForUpdateResult ( "MediaBrowser" , "Emby" , ApplicationVersion , includePreRelease , excludeSuffixes . ToArray ( ) , _releaseAssetFilename , "MBServer" , "Mbserver.zip" , cancellationToken ) ;
}
/// <summary>