diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-06-08 22:06:28 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-08 22:06:28 +0900 |
| commit | dcc131740d146da9046bfc0b7820fd2050d8e423 (patch) | |
| tree | 70f03231c56bd4d237d399cefadb64d1101eb3fb /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 616d24f91ceeb2fa3caf95b20cf3a73e5c9d1214 (diff) | |
| parent | 7ed5cf3dcac8d2b63bfbb9c898d7e214e397fc16 (diff) | |
Merge pull request #3268 from crobibero/ignore-path
Force configuration paths to not be ignored.
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 916e4fda7..5afe356f4 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -27,14 +27,18 @@ namespace MediaBrowser.Controller.Library /// </summary> /// <param name="fileInfo">The file information.</param> /// <param name="parent">The parent.</param> + /// <param name="allowIgnorePath">Allow the path to be ignored.</param> /// <returns>BaseItem.</returns> - BaseItem ResolvePath(FileSystemMetadata fileInfo, - Folder parent = null); + BaseItem ResolvePath( + FileSystemMetadata fileInfo, + Folder parent = null, + bool allowIgnorePath = true); /// <summary> /// Resolves a set of files into a list of BaseItem /// </summary> - IEnumerable<BaseItem> ResolvePaths(IEnumerable<FileSystemMetadata> files, + IEnumerable<BaseItem> ResolvePaths( + IEnumerable<FileSystemMetadata> files, IDirectoryService directoryService, Folder parent, LibraryOptions libraryOptions, |
