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/1cabe82b59071a277d81f9438189b565e93f0660/MediaBrowser.Model/Querying/QueryResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Querying/QueryResult.cs

41 lines
974 B

#nullable disable
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
6 years ago
namespace MediaBrowser.Model.Querying
{
public class QueryResult<T>
{
/// <summary>
/// Gets or sets the items.
/// </summary>
/// <value>The items.</value>
public IReadOnlyList<T> Items { get; set; }
6 years ago
/// <summary>
/// The total number of records available.
6 years ago
/// </summary>
/// <value>The total record count.</value>
public int TotalRecordCount { get; set; }
/// <summary>
/// The index of the first record in Items.
/// </summary>
/// <value>First record index.</value>
public int StartIndex { get; set; }
6 years ago
public QueryResult()
{
Items = Array.Empty<T>();
6 years ago
}
public QueryResult(IReadOnlyList<T> items)
{
Items = items;
TotalRecordCount = items.Count;
}
6 years ago
}
}