mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-10 20:26:17 +00:00
added cast icon to now playing bar to send current media to another client
This commit is contained in:
@@ -14,7 +14,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||
/// Class LuceneSearchEngine
|
||||
/// http://www.codeproject.com/Articles/320219/Lucene-Net-ultra-fast-search-for-MVC-or-WebForms
|
||||
/// </summary>
|
||||
public class LuceneSearchEngine : ILibrarySearchEngine, IDisposable
|
||||
public class LuceneSearchEngine : ISearchEngine, IDisposable
|
||||
{
|
||||
private readonly ILibraryManager _libraryManager;
|
||||
private readonly ILogger _logger;
|
||||
@@ -26,18 +26,6 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||
_logger = logManager.GetLogger("Lucene");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 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>
|
||||
public IEnumerable<BaseItem> Search(IEnumerable<BaseItem> items, string searchTerm)
|
||||
{
|
||||
return items;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user