mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
Remove duplicated condition in history controller
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user