diff options
| author | Jean-Pierre Bachmann <info@jean-pierre-bachmann.dev> | 2023-02-01 19:34:58 +0100 |
|---|---|---|
| committer | Jean-Pierre Bachmann <info@jean-pierre-bachmann.dev> | 2023-02-01 19:34:58 +0100 |
| commit | 6b8d1695297c28098924c5da18da133083ca9c92 (patch) | |
| tree | 25e31887dacebb5cc23c7f3a9a5e25781e48495a /Emby.Server.Implementations/Collections | |
| parent | 992b460912f3100f126bc4db0fe042fd4aefee7c (diff) | |
Added CleanupCollection task
Diffstat (limited to 'Emby.Server.Implementations/Collections')
| -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 b53c8ca51..20370fff5 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); } |
