diff options
| author | Nick <20588554+nicknsy@users.noreply.github.com> | 2023-06-28 21:43:23 -0700 |
|---|---|---|
| committer | Nick <20588554+nicknsy@users.noreply.github.com> | 2023-06-28 21:43:23 -0700 |
| commit | 6d9e43cfe03d94aec62a0b35743003fa4caa32b1 (patch) | |
| tree | a78b31f6743061f4c8bfa41985ae6b2574eaa06f /Emby.Server.Implementations/Collections/CollectionManager.cs | |
| parent | fc619337481e3bb0f686aee06d9c5630926baaef (diff) | |
| parent | 76939bbd9bebb622759422f262c2490b56ab5a16 (diff) | |
Merge branch 'master' into trickplay
Diffstat (limited to 'Emby.Server.Implementations/Collections/CollectionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Collections/CollectionManager.cs | 3 |
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); } |
