aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTOomaAh <tbrunet72@gmail.com>2026-08-09 16:28:20 +0200
committerTOomaAh <tbrunet72@gmail.com>2026-08-09 16:28:20 +0200
commit3031aa91ba2d2eac8161d6090b270239e696f5d5 (patch)
treefeb252bf575874d60aaf65a14acabdfcfa3e80d7
parentfb763c47bfc88b1661f8dd1f3f7a4340d140380e (diff)
fix: correct IsAiring negation to exclude airing items
-rw-r--r--Jellyfin.Server.Implementations/Item/BaseItemRepository.TranslateQuery.cs2
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 8c0a39fe4c..cf98d7998b 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);
}
}