diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-04 18:49:06 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-04 18:49:06 -0500 |
| commit | 6aa3313bc05fe5a26cee8944c00489c022612069 (patch) | |
| tree | 81330692c8f5f7fae10e1f9ec2f2f610aefa15f2 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 60067b4c29ccdfe19102a47eb9347715e1904b22 (diff) | |
make sure ._ osx files are properly ignored
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 9e434541a..4a9ee312f 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -557,9 +557,16 @@ namespace MediaBrowser.Controller.Library /// Gets the items result. /// </summary> /// <param name="query">The query.</param> - /// <param name="user">The user.</param> /// <param name="parentIds">The parent ids.</param> /// <returns>QueryResult<BaseItem>.</returns> QueryResult<BaseItem> GetItemsResult(InternalItemsQuery query, IEnumerable<string> parentIds); + + /// <summary> + /// Ignores the file. + /// </summary> + /// <param name="file">The file.</param> + /// <param name="parent">The parent.</param> + /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> + bool IgnoreFile(FileSystemMetadata file, BaseItem parent); } }
\ No newline at end of file |
