fix: correct IsAiring negation to exclude airing items

This commit is contained in:
TOomaAh
2026-08-09 16:28:20 +02:00
parent fb763c47bf
commit 3031aa91ba
@@ -356,7 +356,7 @@ public sealed partial class BaseItemRepository
}
else
{
baseQuery = baseQuery.Where(e => e.StartDate > now && e.EndDate < now);
baseQuery = baseQuery.Where(e => e.StartDate > now || e.EndDate < now);
}
}