diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-06-26 06:14:19 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-26 06:14:19 +0900 |
| commit | bb7444db0796de508cf411d1acb805ab8f48a05c (patch) | |
| tree | 70912b884140e37040114a68f44a833c817b594c /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | fc722a612e961a78f5fbdb8118c52fb469e955d1 (diff) | |
| parent | 0f07b19ca5d6433a8574363cfe3c20fbfd285514 (diff) | |
Merge pull request #3439 from cvium/ignore_application_folders
Never ignore application folders
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 47c080ebd..9d6646857 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -30,12 +30,10 @@ 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, - bool allowIgnorePath = true); + Folder parent = null); /// <summary> /// Resolves a set of files into a list of BaseItem. |
