Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/81c7999f6134589a462d7a0b018a15015e6374cd/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Querying
|
|
|
|
|
{
|
|
|
|
|
public class MovieRecommendationQuery
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the user identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The user identifier.</value>
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the parent identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The parent identifier.</value>
|
|
|
|
|
public string ParentId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the item limit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The item limit.</value>
|
|
|
|
|
public int ItemLimit { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the category limit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The category limit.</value>
|
|
|
|
|
public int CategoryLimit { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the fields.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The fields.</value>
|
|
|
|
|
public ItemFields[] Fields { get; set; }
|
|
|
|
|
|
|
|
|
|
public MovieRecommendationQuery()
|
|
|
|
|
{
|
|
|
|
|
ItemLimit = 10;
|
|
|
|
|
CategoryLimit = 6;
|
|
|
|
|
Fields = new ItemFields[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|