Merge pull request #9231 from JPVenson/bugfix/1907_CleanupCollections

This commit is contained in:
Joshua M. Boniface
2023-06-28 17:44:11 -04:00
committed by GitHub
3 changed files with 128 additions and 1 deletions

View File

@@ -112,7 +112,8 @@ namespace Emby.Server.Implementations.Collections
return Path.Combine(_appPaths.DataPath, "collections");
}
private Task<Folder?> GetCollectionsFolder(bool createIfNeeded)
/// <inheritdoc />
public Task<Folder?> GetCollectionsFolder(bool createIfNeeded)
{
return EnsureLibraryFolder(GetCollectionsFolderPath(), createIfNeeded);
}