From 9810d22d96529839e78eb16abf37e94b2b269961 Mon Sep 17 00:00:00 2001 From: Fredrik Eriksson Date: Fri, 23 Aug 2024 15:54:02 +0200 Subject: [PATCH] Revert "NextUp query respects Limit (#11956)" (#12414) fix from PR #11956 leads to unexpected behaviour as Fixes: #12367 --- Emby.Server.Implementations/TV/TVSeriesManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emby.Server.Implementations/TV/TVSeriesManager.cs b/Emby.Server.Implementations/TV/TVSeriesManager.cs index c1a615666c..34c9e86f26 100644 --- a/Emby.Server.Implementations/TV/TVSeriesManager.cs +++ b/Emby.Server.Implementations/TV/TVSeriesManager.cs @@ -91,7 +91,7 @@ namespace Emby.Server.Implementations.TV } string? presentationUniqueKey = null; - int? limit = request.Limit; + int? limit = null; if (!request.SeriesId.IsNullOrEmpty()) { if (_libraryManager.GetItemById(request.SeriesId.Value) is Series series)