aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMister Rajoy <danielarezdiaz@gmail.com>2021-03-13 20:35:52 +0100
committerMister Rajoy <danielarezdiaz@gmail.com>2021-03-13 20:35:52 +0100
commit8883aa4a375db4e573fc3f10fcb95e5c145ea450 (patch)
treec52b6ca5d3f5e44815ba8bf14edc40c8f07380d5
parent4cc3b938fa7913bccf7229dafce4b9f1d369dd16 (diff)
parent7a3109104bf4154d285c94a48504083368556c55 (diff)
Merge branch 'master' of https://github.com/danieladov/jellyfin
-rw-r--r--Emby.Server.Implementations/Collections/CollectionManager.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Collections/CollectionManager.cs b/Emby.Server.Implementations/Collections/CollectionManager.cs
index b5d95134b..db532ce5b 100644
--- a/Emby.Server.Implementations/Collections/CollectionManager.cs
+++ b/Emby.Server.Implementations/Collections/CollectionManager.cs
@@ -347,7 +347,6 @@ namespace Emby.Server.Implementations.Collections
var alreadyInResults = false;
foreach (var child in item.GetMediaSources(true))
{
-
if (Guid.TryParse(child.Id, out var id) && results.ContainsKey(id))
{
alreadyInResults = true;
@@ -357,7 +356,6 @@ namespace Emby.Server.Implementations.Collections
if (!alreadyInResults)
{
-
results[item.Id] = item;
}
}