Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/664f0441b07a01c7bfa428d79639c5c7412ee0e0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
2 deletions
@ -108,9 +108,12 @@ namespace MediaBrowser.Server.Implementations.Intros
IsPlayed = config . EnableIntrosForWatchedContent ? ( bool? ) null : false ,
MaxParentalRating = config . EnableIntrosParentalControl ? ratingLevel : null ,
BlockUnratedItems = config . EnableIntrosParentalControl ? new [ ] { UnratedItem . Trailer } : new UnratedItem [ ] { } ,
Limit = config . TrailerLimit ,
// Account for duplicates by imdb id, since the database doesn't support this yet
Limit = config . TrailerLimit * 2 ,
SourceTypes = sourceTypes . ToArray ( )
} ) ;
} ) . Where ( i = > string . IsNullOrWhiteSpace ( i . GetProviderId ( MetadataProviders . Imdb ) ) | | ! string . Equals ( i . GetProviderId ( MetadataProviders . Imdb ) , item . GetProviderId ( MetadataProviders . Imdb ) , StringComparison . OrdinalIgnoreCase ) ) . Take ( config . TrailerLimit ) ;
candidates . AddRange ( trailerResult . Select ( i = > new ItemWithTrailer
{