Explorar o código

Order ids to merge to avoid stack overflow

As said in https://github.com/jellyfin/jellyfin/issues/3176, merging 1 with 2 and then 2 with 1 cause an stack overflow. sorting ids first fix the problem
Mister Rajoy %!s(int64=5) %!d(string=hai) anos
pai
achega
1b90798b90
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      MediaBrowser.Api/VideosService.cs

+ 2 - 0
MediaBrowser.Api/VideosService.cs

@@ -125,10 +125,12 @@ namespace MediaBrowser.Api
 
         public void Post(MergeVersions request)
         {
+
             var items = request.Ids.Split(',')
                 .Select(i => _libraryManager.GetItemById(i))
                 .OfType<Video>()
                 .ToList();
+            items = items.OrderBy(i => i.Id).ToList();
 
             if (items.Count < 2)
             {