mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Oh hai search!
This commit is contained in:
parent
ac2d33443b
commit
cbbb6e2b18
11 changed files with 96 additions and 14 deletions
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
|
@ -33,9 +34,9 @@ namespace NzbDrone.Core.Providers
|
|||
{
|
||||
}
|
||||
|
||||
public virtual IQueryable<Series> GetAllSeries()
|
||||
public virtual IList<Series> GetAllSeries()
|
||||
{
|
||||
return _repository.All<Series>();
|
||||
return _repository.All<Series>().ToList();
|
||||
}
|
||||
|
||||
public virtual Series GetSeries(int seriesId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue