mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Get by multiple ids added to BasicRepo
This commit is contained in:
parent
ebf82ec09e
commit
c3273b74e8
3 changed files with 14 additions and 12 deletions
|
@ -137,11 +137,6 @@ namespace NzbDrone.Core.Tv
|
|||
|
||||
}
|
||||
|
||||
public void SetTvRageId(int seriesId, int tvRageId)
|
||||
{
|
||||
_seriesRepository.SetTvRageId(seriesId, tvRageId);
|
||||
}
|
||||
|
||||
public Series FindByTvdbId(int tvdbId)
|
||||
{
|
||||
return _seriesRepository.FindByTvdbId(tvdbId);
|
||||
|
@ -181,7 +176,7 @@ namespace NzbDrone.Core.Tv
|
|||
|
||||
public List<Series> GetSeriesInList(IEnumerable<int> seriesIds)
|
||||
{
|
||||
return _seriesRepository.SeriesIsInList(seriesIds);
|
||||
return _seriesRepository.Get(seriesIds).ToList();
|
||||
}
|
||||
|
||||
public void HandleAsync(SeriesAddedEvent message)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue