aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Collections/CollectionManager.cs
diff options
context:
space:
mode:
authorNick <20588554+nicknsy@users.noreply.github.com>2023-06-28 21:43:23 -0700
committerNick <20588554+nicknsy@users.noreply.github.com>2023-06-28 21:43:23 -0700
commit6d9e43cfe03d94aec62a0b35743003fa4caa32b1 (patch)
treea78b31f6743061f4c8bfa41985ae6b2574eaa06f /Emby.Server.Implementations/Collections/CollectionManager.cs
parentfc619337481e3bb0f686aee06d9c5630926baaef (diff)
parent76939bbd9bebb622759422f262c2490b56ab5a16 (diff)
Merge branch 'master' into trickplay
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);
}