mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-08 21:52:24 +00:00
comments
This commit is contained in:
@@ -9,11 +9,12 @@ namespace MediaBrowser.Controller.Library
|
||||
public interface ILibrarySearchEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Sorts the specified items.
|
||||
/// Searches items and returns them in order of relevance.
|
||||
/// </summary>
|
||||
/// <param name="items">The items.</param>
|
||||
/// <param name="searchTerm">The search term.</param>
|
||||
/// <returns>IEnumerable{BaseItem}.</returns>
|
||||
/// <exception cref="System.ArgumentNullException">searchTerm</exception>
|
||||
IEnumerable<BaseItem> Search(IEnumerable<BaseItem> items, string searchTerm);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||
public class LuceneSearchEngine : ILibrarySearchEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Sorts the specified items.
|
||||
/// Searches items and returns them in order of relevance.
|
||||
/// </summary>
|
||||
/// <param name="items">The items.</param>
|
||||
/// <param name="searchTerm">The search term.</param>
|
||||
|
||||
Reference in New Issue
Block a user