Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/72a956d02272e3e11211ec1e16ae187018e5843a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
5 deletions
@ -745,13 +745,13 @@ namespace MediaBrowser.Providers.Movies
// tmdb appears to have unified their numbers to always report "7.3" regardless of country
// so I removed the culture-specific processing here because it was not working for other countries -ebr
// Movies get this from imdb
if ( movie is BoxSet & & float . TryParse ( voteAvg , NumberStyles . AllowDecimalPoint , CultureInfo . InvariantCulture , out rating ) )
if ( ! ( movie is Movie ) & & float . TryParse ( voteAvg , NumberStyles . AllowDecimalPoint , CultureInfo . InvariantCulture , out rating ) )
{
movie . CommunityRating = rating ;
}
// Movies get this from imdb
if ( movie is BoxSet )
if ( ! ( movie is Movie ) )
{
movie . VoteCount = movieData . vote_count ;
}
@ -811,7 +811,7 @@ namespace MediaBrowser.Providers.Movies
}
}
// i f that didn't find a rating and we are a boxset, use the one from our first child
// I f that didn't find a rating and we are a boxset, use the one from our first child
if ( movie . OfficialRating = = null & & movie is BoxSet & & ! movie . LockedFields . Contains ( MetadataFields . OfficialRating ) )
{
var boxset = movie as BoxSet ;
@ -842,7 +842,7 @@ namespace MediaBrowser.Providers.Movies
{
// Only grab them if a boxset or there are no genres.
// For movies and trailers we'll use imdb via omdb
if ( movie is BoxSet | | movie . Genres . Count = = 0 )
if ( ! ( movie is Movie ) | | movie . Genres . Count = = 0 )
{
movie . Genres . Clear ( ) ;
@ -208,7 +208,7 @@ namespace MediaBrowser.Providers.Movies
return item . Genres . Count = = 0 ;
}
return item is Series ;
return item is Series | | item is Movie ;
}
protected class RootObject