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/6392970066f2b0279447db40c3fe759fc90155de/MediaBrowser.Model/Search/SearchHintResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Search/SearchHintResult.cs

34 lines
1.0 KiB

using System.Collections.Generic;
6 years ago
namespace MediaBrowser.Model.Search
{
/// <summary>
/// Class SearchHintResult.
6 years ago
/// </summary>
public class SearchHintResult
{
/// <summary>
/// Initializes a new instance of the <see cref="SearchHintResult" /> class.
/// </summary>
/// <param name="searchHints">The search hints.</param>
/// <param name="totalRecordCount">The total record count.</param>
public SearchHintResult(IReadOnlyList<SearchHint> searchHints, int totalRecordCount)
{
SearchHints = searchHints;
TotalRecordCount = totalRecordCount;
}
/// <summary>
/// Gets the search hints.
6 years ago
/// </summary>
/// <value>The search hints.</value>
public IReadOnlyList<SearchHint> SearchHints { get; }
6 years ago
/// <summary>
/// Gets the total record count.
6 years ago
/// </summary>
/// <value>The total record count.</value>
public int TotalRecordCount { get; }
6 years ago
}
}