1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Fixed: Filter history by multiple event types in PG

This commit is contained in:
Bogdan 2024-01-12 18:51:26 +02:00
parent a652ce50a9
commit f7816aa5cd

View File

@ -68,8 +68,7 @@ public PagingResource<HistoryResource> GetHistory([FromQuery] PagingRequestResou
if (eventTypes != null && eventTypes.Any())
{
var filterValues = eventTypes.Cast<MovieHistoryEventType>().ToArray();
pagingSpec.FilterExpressions.Add(v => filterValues.Contains(v.EventType));
pagingSpec.FilterExpressions.Add(v => eventTypes.Contains((int)v.EventType));
}
if (downloadId.IsNotNullOrWhiteSpace())