Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/a93913b423d87b2dcbb8631cac99dd62eedcd5a0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -280,9 +280,9 @@ namespace MediaBrowser.Controller.Providers.MediaInfo
var language = fileNameWithoutExtension . Split ( '.' ) . LastOrDefault ( ) ;
// Try to translate to three character code
// Be flexible and check against all propertie s
// Be flexible and check against both the full and three character version s
var culture = _localization . GetCultures ( )
. FirstOrDefault ( i = > string . Equals ( i . DisplayName , language , StringComparison . OrdinalIgnoreCase ) | | string . Equals ( i . Name , language , StringComparison . OrdinalIgnoreCase ) | | string . Equals ( i . ThreeLetterISOLanguageName , language , StringComparison . OrdinalIgnoreCase ) | | string . Equals ( i . TwoLetterISOLanguageName , language , StringComparison . OrdinalIgnoreCase ) ) ;
. FirstOrDefault ( i = > string . Equals ( i . DisplayName , language , StringComparison . OrdinalIgnoreCase ) | | string . Equals ( i . Name , language , StringComparison . OrdinalIgnoreCase ) | | string . Equals ( i . ThreeLetterISOLanguageName , language , StringComparison . OrdinalIgnoreCase ) ) ;
if ( culture ! = null )
{