diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-04-01 18:01:25 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-04-01 18:01:25 +0200 |
| commit | 99ad70fbc81c128f5859081a3b51da8db2d78726 (patch) | |
| tree | d929a9e3525703f3794c0b742645af436ac50440 /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | 6fdfc6a61b705191a23cf05d6648ace5607ab197 (diff) | |
Wrap method parameters
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index 57db845cb2..5d24bffa2f 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -774,7 +774,11 @@ namespace Emby.Server.Implementations.Library return key.GetMD5(); } - public BaseItem? ResolvePath(FileSystemMetadata fileInfo, Folder? parent = null, IDirectoryService? directoryService = null, CollectionType? collectionType = null) + public BaseItem? ResolvePath( + FileSystemMetadata fileInfo, + Folder? parent = null, + IDirectoryService? directoryService = null, + CollectionType? collectionType = null) => ResolvePath(fileInfo, directoryService ?? new DirectoryService(_fileSystem), null, parent, collectionType); /// <inheritdoc /> |
