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
This commit is contained in:
Mister Rajoy 2020-05-31 20:23:23 +02:00
parent 730395886d
commit 1b90798b90

View file

@ -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)
{