Просмотр исходного кода

Revert "NextUp query respects Limit (#11956)" (#12414)

fix from PR #11956 leads to unexpected behaviour as
Fixes: #12367
Fredrik Eriksson 10 месяцев назад
Родитель
Сommit
9810d22d96
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Emby.Server.Implementations/TV/TVSeriesManager.cs

+ 1 - 1
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)