Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/7b8c17c79304156568a873f888010f0f2630264b?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Filter history by multiple event types in PG

Fixes 
pull/4438/head
Bogdan 1 year ago
parent a9c19a89f2
commit 7b8c17c793

@ -75,8 +75,7 @@ namespace Lidarr.Api.V1.History
if (eventTypes != null && eventTypes.Any())
{
var filterValues = eventTypes.Cast<EntityHistoryEventType>().ToArray();
pagingSpec.FilterExpressions.Add(v => filterValues.Contains(v.EventType));
pagingSpec.FilterExpressions.Add(v => eventTypes.Contains((int)v.EventType));
}
if (albumId.HasValue)

Loading…
Cancel
Save