Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/ee1e0c7fe383a099d0812e1a6ae9bfaea9216ae0/MediaBrowser.Controller/Library/ISearchEngine.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Library/ISearchEngine.cs

20 lines
545 B

using MediaBrowser.Model.Querying;
using MediaBrowser.Model.Search;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Library
{
/// <summary>
/// Interface ILibrarySearchEngine
/// </summary>
public interface ISearchEngine
{
/// <summary>
/// Gets the search hints.
/// </summary>
/// <param name="query">The query.</param>
/// <returns>Task{IEnumerable{SearchHintInfo}}.</returns>
Task<QueryResult<SearchHintInfo>> GetSearchHints(SearchQuery query);
}
}