aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Collections/CollectionManager.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2023-06-28 17:44:11 -0400
committerGitHub <noreply@github.com>2023-06-28 17:44:11 -0400
commit76939bbd9bebb622759422f262c2490b56ab5a16 (patch)
treeaa197364c7d7073d6cc49bab4fcfe00259b18afe /Emby.Server.Implementations/Collections/CollectionManager.cs
parente53e53eb29cca3b316fcf8f57abfa1c0f2807d99 (diff)
parentcc82ca189fcbd068c34c0d1c38a67d2332a96d44 (diff)
Merge pull request #9231 from JPVenson/bugfix/1907_CleanupCollections
Diffstat (limited to 'Emby.Server.Implementations/Collections/CollectionManager.cs')
-rw-r--r--Emby.Server.Implementations/Collections/CollectionManager.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Collections/CollectionManager.cs b/Emby.Server.Implementations/Collections/CollectionManager.cs
index 179683055..b34d0f21e 100644
--- a/Emby.Server.Implementations/Collections/CollectionManager.cs
+++ b/Emby.Server.Implementations/Collections/CollectionManager.cs
@@ -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);
}