mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:28:23 +00:00
fixes
This commit is contained in:
parent
723b6abcb3
commit
d44b2e2ee5
2 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue