diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-10 16:11:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-10 16:11:30 -0400 |
| commit | 0b77a520fa7fc2114ceed5625a770bc703842dd9 (patch) | |
| tree | fbd2cbaff2ca2dcfc5fc2333dfeeed38bf7018cd /Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs | |
| parent | d0e0e291f23db227d4521012100628db422467c1 (diff) | |
| parent | 3031aa91ba2d2eac8161d6090b270239e696f5d5 (diff) | |
Merge pull request #17588 from TOomaAh/fix/is-airing-filter
fix: correct IsAiring negation to exclude airing items
Diffstat (limited to 'Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs index 379f480106..54357b2c72 100644 --- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs +++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs @@ -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); } } |
