This commit is contained in:
cvium
2021-04-13 20:12:50 +02:00
parent 723b6abcb3
commit d44b2e2ee5
2 changed files with 8 additions and 8 deletions

View File

@@ -341,12 +341,7 @@ namespace Emby.Server.Implementations.Collections
itemIsInBoxSet = true;
if (results.ContainsKey(boxSet.Id))
{
continue;
}
results[boxSet.Id] = boxSet;
results.TryAdd(boxSet.Id, boxSet);
}
// skip any item that is in a box set
@@ -373,7 +368,7 @@ namespace Emby.Server.Implementations.Collections
if (!alreadyInResults)
{
results[item.Id] = item;
results[itemId] = item;
}
}
}