Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/0ff432ea4e9d2b988a1af85e1c4a459ba5eb2988
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
18 additions and
4 deletions
@ -107,6 +107,13 @@ namespace MediaBrowser.Api
dto . Type = item . GetType ( ) . Name ;
dto . UserRating = item . UserRating ;
VirtualFolder virtualFolder = item . VirtualFolder ;
if ( virtualFolder ! = null )
{
dto . VfType = virtualFolder . CollectionType ;
}
dto . UserData = item . GetUserData ( user ) ;
Folder folder = item as Folder ;
@ -243,12 +243,14 @@ namespace MediaBrowser.Controller
{
var provider = MetadataProviders [ i ] ;
if ( ! provider . Supports ( item ) )
// Skip if internet providers are currently disabled
if ( provider . RequiresInternet & & ( ! Configuration . EnableInternetProviders | | ! allowInternetProviders ) )
{
continue ;
}
if ( provider . RequiresInternet & & ( ! Configuration . EnableInternetProviders | | ! allowInternetProviders ) )
// Skip if the provider doesn't support the current item
if ( ! provider . Supports ( item ) )
{
continue ;
}
@ -83,6 +83,11 @@ namespace MediaBrowser.Model.DTO
public IEnumerable < DTOBaseItem > LocalTrailers { get ; set ; }
public int LocalTrailerCount { get ; set ; }
/// <summary>
/// Holds the virtual folder collection type
/// </summary>
public string VfType { get ; set ; }
/// <summary>
/// User data for this item based on the user it's being requested for
/// </summary>
@ -27,7 +27,7 @@ namespace MediaBrowser.Model.DTO
}
/// <summary>
/// This is used by BaseItemContainer
/// This is used by the api to get information about a Person within a BaseItem
/// </summary>
public class BaseItemPerson
{
@ -38,7 +38,7 @@ namespace MediaBrowser.Model.DTO
}
/// <summary>
/// This is used by BaseItemContainer
/// This is used by the api to get information about a studio within a BaseItem
/// </summary>
public class BaseItemStudio
{