Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/b1af8a4178b5d993b09e5682a0149ea37766ff91
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -18,7 +18,7 @@ namespace MediaBrowser.MediaEncoding.Probing
if ( result . Format ! = null & & result . Format . Tags ! = null )
{
result . Format . Tags = ConvertDictionaryToCaseIn S ensitive( result . Format . Tags ) ;
result . Format . Tags = ConvertDictionaryToCaseIn s ensitive( result . Format . Tags ) ;
}
if ( result . Streams ! = null )
@ -28,7 +28,7 @@ namespace MediaBrowser.MediaEncoding.Probing
{
if ( stream . Tags ! = null )
{
stream . Tags = ConvertDictionaryToCaseIn S ensitive( stream . Tags ) ;
stream . Tags = ConvertDictionaryToCaseIn s ensitive( stream . Tags ) ;
}
}
}
@ -98,7 +98,7 @@ namespace MediaBrowser.MediaEncoding.Probing
/// </summary>
/// <param name="dict">The dict.</param>
/// <returns>Dictionary{System.StringSystem.String}.</returns>
private static Dictionary < string , string > ConvertDictionaryToCaseIn S ensitive( IReadOnlyDictionary < string , string > dict )
private static Dictionary < string , string > ConvertDictionaryToCaseIn s ensitive( IReadOnlyDictionary < string , string > dict )
{
return new Dictionary < string , string > ( dict , StringComparer . OrdinalIgnoreCase ) ;
}