diff options
| author | Joe Rogers <1337joe@gmail.com> | 2023-03-06 23:00:55 -0500 |
|---|---|---|
| committer | Joe Rogers <1337joe@gmail.com> | 2023-03-06 23:00:55 -0500 |
| commit | 1c3a97bf6adadf4e3b22177e1e965691637d0426 (patch) | |
| tree | 5a2611b8e1711fb0698a80a0bfeee61dc587c953 /MediaBrowser.Controller/Entities/CollectionFolder.cs | |
| parent | 160baa02fd9a2e7b4e2b3dcc28769274d0588413 (diff) | |
Inject IDirectoryService where needed instead of passing it through ItemResolveArgs
Diffstat (limited to 'MediaBrowser.Controller/Entities/CollectionFolder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/CollectionFolder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/CollectionFolder.cs b/MediaBrowser.Controller/Entities/CollectionFolder.cs index ff1779717..095b261c0 100644 --- a/MediaBrowser.Controller/Entities/CollectionFolder.cs +++ b/MediaBrowser.Controller/Entities/CollectionFolder.cs @@ -288,7 +288,7 @@ namespace MediaBrowser.Controller.Entities { var path = ContainingFolderPath; - var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths, directoryService, LibraryManager) + var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths, LibraryManager) { FileInfo = FileSystem.GetDirectoryInfo(path), Parent = GetParent() as Folder, |
