Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/16ef1101965dcd3f398af182a8acf0915e76d96a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
1 additions and
9 deletions
@ -206,7 +206,7 @@ namespace MediaBrowser.Controller.Entities
{ LocalizedStrings . Instance . GetString ( "GenreDispPref" ) , GetIndexByGenre } ,
{ LocalizedStrings . Instance . GetString ( "DirectorDispPref" ) , GetIndexByDirector } ,
{ LocalizedStrings . Instance . GetString ( "YearDispPref" ) , GetIndexByYear } ,
{ LocalizedStrings . Instance . GetString ( "OfficialRatingDispPref" ) , null } ,
//{LocalizedStrings.Instance.GetString("OfficialRatingDispPref"), null} ,
{ LocalizedStrings . Instance . GetString ( "StudioDispPref" ) , GetIndexByStudio }
} ;
@ -237,14 +237,6 @@ namespace MediaBrowser.Server.Implementations.Localization
}
}
// Try and support ratings that are incorrectly prefixed with localization values (GB-PG, which is really just PG)
var index = rating . IndexOf ( '-' ) ;
if ( index ! = - 1 )
{
return GetRatingLevel ( rating . Substring ( index + 1 ) ) ;
}
return value = = null ? ( int? ) null : value . Value ;
}
}