Lowercase CollectionTypeOptions to match legacy experience (#11272)

This commit is contained in:
Cody Robibero
2024-03-31 21:58:06 -06:00
committed by GitHub
parent d9fe900952
commit 3ade3a8e63
6 changed files with 49 additions and 113 deletions

View File

@@ -102,7 +102,7 @@ namespace Emby.Server.Implementations.Collections
var name = _localizationManager.GetLocalizedString("Collections");
await _libraryManager.AddVirtualFolder(name, CollectionTypeOptions.BoxSets, libraryOptions, true).ConfigureAwait(false);
await _libraryManager.AddVirtualFolder(name, CollectionTypeOptions.boxsets, libraryOptions, true).ConfigureAwait(false);
return FindFolders(path).First();
}