aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Collections/CollectionManager.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-07-10 10:09:02 -0600
committerCody Robibero <cody@robibe.ro>2021-07-10 10:09:02 -0600
commit65f8d8c0cd6cf64cebcbc0cc9279d9857ebf343c (patch)
tree005197f12671ec838186369579951b236c8e4650 /Emby.Server.Implementations/Collections/CollectionManager.cs
parent4281722d5a50347c26ee92dcd47b3bbad5cedbbf (diff)
[CA1801] Parameter is never used. Remove the parameter or use it in the method body.
Diffstat (limited to 'Emby.Server.Implementations/Collections/CollectionManager.cs')
-rw-r--r--Emby.Server.Implementations/Collections/CollectionManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Collections/CollectionManager.cs b/Emby.Server.Implementations/Collections/CollectionManager.cs
index 82d80fc83..4fc33e2ea 100644
--- a/Emby.Server.Implementations/Collections/CollectionManager.cs
+++ b/Emby.Server.Implementations/Collections/CollectionManager.cs
@@ -164,7 +164,7 @@ namespace Emby.Server.Implementations.Collections
DateCreated = DateTime.UtcNow
};
- parentFolder.AddChild(collection, CancellationToken.None);
+ parentFolder.AddChild(collection);
if (options.ItemIdList.Count > 0)
{