Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/0f33dfe7027806c82b2b792b073e825be22364f7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
1 additions and
4 deletions
@ -775,7 +775,7 @@ namespace MediaBrowser.Controller.Providers.Movies
var ourRelease = movieData . releases . countries . FirstOrDefault ( c = > c . iso_3166_1 . Equals ( ConfigurationManager . Configuration . MetadataCountryCode , StringComparison . OrdinalIgnoreCase ) ) ? ? new Country ( ) ;
var usRelease = movieData . releases . countries . FirstOrDefault ( c = > c . iso_3166_1 . Equals ( "US" , StringComparison . OrdinalIgnoreCase ) ) ? ? new Country ( ) ;
var ratingPrefix = ConfigurationManager . Configuration . MetadataCountryCode . Equals ( "us" , StringComparison . OrdinalIgnoreCase ) ? "" : ConfigurationManager . Configuration . MetadataCountryCode + "-" ;
movie . OfficialRating = ourRelease . certification ! = null ? ratingPrefix + ourRelease . certification : usRelease . certification ;
movie . OfficialRating = ! string . IsNullOrEmpty ( ourRelease . certification ) ? ratingPrefix + ourRelease . certification : ! string . IsNullOrEmpty ( usRelease . certification ) ? usRelease . certification : null ;
if ( ourRelease . release_date > new DateTime ( 1900 , 1 , 1 ) )
{
@ -205,7 +205,4 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(Performance) = preSolution
HasPerformanceSessions = true
EndGlobalSection
EndGlobal