Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/97680efefbe31b177ee900612772dbdbe4e38ea0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
6 deletions
@ -220,13 +220,13 @@ namespace MediaBrowser.Model.Configuration
/// Gets or sets the width of the min movie backdrop.
/// </summary>
/// <value>The width of the min movie backdrop.</value>
public int MinMovieBackdrop Width { get ; set ; }
public int MinMovieBackdrop Download Width { get ; set ; }
/// <summary>
/// Gets or sets the width of the min series backdrop.
/// </summary>
/// <value>The width of the min series backdrop.</value>
public int MinSeriesBackdrop Width { get ; set ; }
public int MinSeriesBackdrop Download Width { get ; set ; }
/// <summary>
/// Gets or sets a value indicating whether [enable people prefix sub folders].
@ -283,8 +283,8 @@ namespace MediaBrowser.Model.Configuration
SeasonZeroDisplayName = "Specials" ;
MinMovieBackdrop Width = 1 9 20;
MinSeriesBackdrop Width = 1 9 20;
MinMovieBackdrop Download Width = 1 28 0;
MinSeriesBackdrop Download Width = 1 28 0;
}
}
@ -215,7 +215,7 @@ namespace MediaBrowser.Providers.Movies
cancellationToken . ThrowIfCancellationRequested ( ) ;
var eligibleBackdrops = images
. Where ( i = > i . Type = = ImageType . Backdrop & & i . Width . HasValue & & i . Width . Value > = ConfigurationManager . Configuration . MinMovieBackdrop Width)
. Where ( i = > i . Type = = ImageType . Backdrop & & i . Width . HasValue & & i . Width . Value > = ConfigurationManager . Configuration . MinMovieBackdrop Download Width)
. ToList ( ) ;
var backdropLimit = ConfigurationManager . Configuration . MaxBackdrops ;
@ -238,7 +238,7 @@ namespace MediaBrowser.Providers.TV
if ( int . TryParse ( parts [ 0 ] , NumberStyles . Any , UsCulture , out width ) )
{
return width > = ConfigurationManager . Configuration . MinSeriesBackdrop Width;
return width > = ConfigurationManager . Configuration . MinSeriesBackdrop Download Width;
}
return true ;