From 79ff0b0b002c27142769de4a37fcb555b1474888 Mon Sep 17 00:00:00 2001 From: theguymadmax Date: Wed, 8 Oct 2025 10:32:00 -0400 Subject: [PATCH] Fix collections folder duplication (#14925) --- Emby.Server.Implementations/Collections/CollectionManager.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Emby.Server.Implementations/Collections/CollectionManager.cs b/Emby.Server.Implementations/Collections/CollectionManager.cs index 0eb387ffdd..a320a774c6 100644 --- a/Emby.Server.Implementations/Collections/CollectionManager.cs +++ b/Emby.Server.Implementations/Collections/CollectionManager.cs @@ -104,6 +104,8 @@ namespace Emby.Server.Implementations.Collections await _libraryManager.AddVirtualFolder(name, CollectionTypeOptions.boxsets, libraryOptions, true).ConfigureAwait(false); + _libraryManager.RootFolder.Children = null; + return FindFolders(path).First(); }