Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/10395b6c8480c13508d9d9c85dc2a10ace3cd847
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
14 additions and
2 deletions
@ -215,6 +215,7 @@ namespace MediaBrowser.Api.Reports
Filter = i = > ApplyAdditionalFilters ( request , i , user , _libraryManager ) ,
IsFavorite = request . IsFavorite ,
Limit = request . Limit ,
StartIndex = request . StartIndex ,
IsMissing = request . IsMissing ,
@ -301,8 +302,11 @@ namespace MediaBrowser.Api.Reports
}
}
if ( request . HasQueryLimit )
query . Limit = request . Limit ;
if ( request . HasQueryLimit = = false )
{
query . StartIndex = null ;
query . Limit = null ;
}
return query ;
}
@ -168,6 +168,13 @@ namespace MediaBrowser.Api.UserLibrary
[ApiMember(Name = "Filters", Description = "Optional. Specify additional filters to apply. This allows multiple, comma delimeted. Options: IsFolder, IsNotFolder, IsUnplayed, IsPlayed, IsFavorite, IsResumable, Likes, Dislikes", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
public string Filters { get ; set ; }
/// <summary>
/// Gets or sets the Isfavorite option
/// </summary>
/// <value>IsFavorite</value>
[ApiMember(Name = "IsFavorite", Description = "Optional filter by items that are marked as favorite, or not.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsFavorite { get ; set ; }
/// <summary>
/// Gets or sets the media types.
/// </summary>
@ -181,6 +181,7 @@ namespace MediaBrowser.Api.UserLibrary
Filter = i = > ApplyAdditionalFilters ( request , i , user , _libraryManager ) ,
IsFavorite = request . IsFavorite ,
Limit = request . Limit ,
StartIndex = request . StartIndex ,
IsMissing = request . IsMissing ,