Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/57741c9cea88b5b81e49f91618167d1ee69a45c1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
15 additions and
4 deletions
@ -698,10 +698,21 @@ namespace MediaBrowser.Api.Images
var userAgent = Request . UserAgent ? ? string . Empty ;
if ( userAgent . IndexOf ( "dalvik" , StringComparison . OrdinalIgnoreCase ) ! = - 1 & &
userAgent . IndexOf ( "android" , StringComparison . OrdinalIgnoreCase ) ! = - 1 )
if ( ! supportsWebP )
{
supportsWebP = true ;
if ( string . Equals ( Request . QueryString [ "accept" ] , "webp" , StringComparison . OrdinalIgnoreCase ) )
{
supportsWebP = true ;
}
}
if ( ! supportsWebP )
{
if ( userAgent . IndexOf ( "crosswalk" , StringComparison . OrdinalIgnoreCase ) ! = - 1 & &
userAgent . IndexOf ( "android" , StringComparison . OrdinalIgnoreCase ) ! = - 1 )
{
supportsWebP = true ;
}
}
if ( supportsWebP )
@ -77,7 +77,7 @@ namespace MediaBrowser.Server.Mono
// Allow all https requests
ServicePointManager . ServerCertificateValidationCallback = new RemoteCertificateValidationCallback ( delegate { return true ; } ) ;
var fileSystem = new ManagedFileSystem ( new PatternsLogger ( logManager . GetLogger ( "FileSystem" ) ) , false , tru e) ;
var fileSystem = new ManagedFileSystem ( new PatternsLogger ( logManager . GetLogger ( "FileSystem" ) ) , false , fals e) ;
fileSystem . AddShortcutHandler ( new MbLinkShortcutHandler ( fileSystem ) ) ;
var nativeApp = new NativeApp ( options ) ;