Browse Source

Fix collections folder duplication (#14925)

theguymadmax 4 days ago
parent
commit
79ff0b0b00
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Emby.Server.Implementations/Collections/CollectionManager.cs

+ 2 - 0
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();
         }