Merge pull request #17588 from TOomaAh/fix/is-airing-filter

fix: correct IsAiring negation to exclude airing items
This commit is contained in:
Cody Robibero
2026-08-10 16:11:30 -04:00
committed by GitHub
@@ -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);
}
}