Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d765f370b35bdc8c74a6b74a82796efcea97f762
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
1 additions and
10 deletions
@ -237,12 +237,6 @@ namespace Emby.Server.Implementations.Configuration
changed = true ;
}
if ( ! config . EnableLocalizedGuids )
{
config . EnableLocalizedGuids = true ;
changed = true ;
}
return changed ;
}
}
@ -506,7 +506,7 @@ namespace Emby.Server.Implementations.Library
throw new ArgumentNullException ( "type" ) ;
}
if ( ConfigurationManager. Configuration . EnableLocalizedGuids & & key. StartsWith ( ConfigurationManager . ApplicationPaths . ProgramDataPath ) )
if ( key. StartsWith ( ConfigurationManager . ApplicationPaths . ProgramDataPath ) )
{
// Try to normalize paths located underneath program-data in an attempt to make them more portable
key = key . Substring ( ConfigurationManager . ApplicationPaths . ProgramDataPath . Length )
@ -189,8 +189,6 @@ namespace MediaBrowser.Model.Configuration
public PathSubstitution [ ] PathSubstitutions { get ; set ; }
public bool EnableSimpleArtistDetection { get ; set ; }
public bool EnableLocalizedGuids { get ; set ; }
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
/// </summary>
@ -202,7 +200,6 @@ namespace MediaBrowser.Model.Configuration
PathSubstitutions = new PathSubstitution [ ] { } ;
EnableSimpleArtistDetection = true ;
EnableLocalizedGuids = true ;
DisplaySpecialsWithinSeasons = true ;
EnableExternalContentInSuggestions = true ;