1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05: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 @@ namespace Radarr.Api.V3.History
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())