Remove duplicated condition in history controller
This commit is contained in:
parent
910c403d84
commit
3a99c2781b
|
@ -88,11 +88,6 @@ namespace Sonarr.Api.V3.History
|
|||
pagingSpec.FilterExpressions.Add(h => seriesIds.Contains(h.SeriesId));
|
||||
}
|
||||
|
||||
if (seriesIds != null && seriesIds.Any())
|
||||
{
|
||||
pagingSpec.FilterExpressions.Add(h => seriesIds.Contains(h.SeriesId));
|
||||
}
|
||||
|
||||
return pagingSpec.ApplyToPage(h => _historyService.Paged(pagingSpec, languages, quality), h => MapToResource(h, includeSeries, includeEpisode));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue