Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f7479bc7301391d1aed9b2cb1104e501087bb6d6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
4 deletions
@ -75,12 +75,14 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.BoxSets
var collections = new RemoteSearchResult [ collectionSearchResults . Count ] ;
for ( var i = 0 ; i < collectionSearchResults . Count ; i + + )
{
var result = collectionSearchResults [ i ] ;
var collection = new RemoteSearchResult
{
Name = collectionSearchResults [ i ] . Name ,
SearchProviderName = Name
Name = result . Name ,
SearchProviderName = Name ,
ImageUrl = _tmdbClientManager . GetPosterUrl ( result . PosterPath )
} ;
collection . SetProviderId ( MetadataProvider . Tmdb , collectionSea rchR esults[ i ] . Id . ToString ( CultureInfo . InvariantCulture ) ) ;
collection . SetProviderId ( MetadataProvider . Tmdb , result. Id . ToString ( CultureInfo . InvariantCulture ) ) ;
collections [ i ] = collection ;
}
@ -299,7 +299,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Movies
if ( ! string . IsNullOrWhiteSpace ( person . ProfilePath ) )
{
personInfo . ImageUrl = _tmdbClientManager . GetP oster Url( person . ProfilePath ) ;
personInfo . ImageUrl = _tmdbClientManager . GetP rofile Url( person . ProfilePath ) ;
}
if ( person . Id > 0 )