diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-07 19:01:37 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-07 19:01:37 +0100 |
| commit | 2420ece5fe47c3d990641add1648b9c220215a62 (patch) | |
| tree | 1e21e237ac81b944957f376abbaa626228a8b6b7 /MediaBrowser.Controller/Library | |
| parent | 00dd84035ee39b36da343e0d98d7dc83246c5f89 (diff) | |
Fix version resolution and scan handling
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 3b3295c57d..453d9f7c2b 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -59,11 +59,13 @@ namespace MediaBrowser.Controller.Library /// <param name="fileInfo">The file information.</param> /// <param name="parent">The parent.</param> /// <param name="directoryService">An instance of <see cref="IDirectoryService"/>.</param> + /// <param name="collectionType">The collection type of the library containing this item.</param> /// <returns>BaseItem.</returns> BaseItem? ResolvePath( FileSystemMetadata fileInfo, Folder? parent = null, - IDirectoryService? directoryService = null); + IDirectoryService? directoryService = null, + CollectionType? collectionType = null); /// <summary> /// Resolves a set of files into a list of BaseItem. |
