diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-23 16:04:31 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-30 01:37:16 -0400 |
| commit | 0ee4767b8c86cd81e8c0e16da16e752482576cfb (patch) | |
| tree | da6aabe05424b93cff76f76917f9fba49b018f54 | |
| parent | 19008e342ec297bb5d653d19ad9e1ca12b4558f4 (diff) | |
Don't use library monitor for internal folders
| -rw-r--r-- | MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs index 76f0e6a1d..7dbeaf6b7 100644 --- a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs +++ b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs @@ -174,6 +174,11 @@ namespace MediaBrowser.Server.Implementations.IO private bool IsLibraryMonitorEnabaled(BaseItem item) { + if (item is BasePluginFolder) + { + return false; + } + var options = LibraryManager.GetLibraryOptions(item); if (options != null) |
