diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-22 14:16:30 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-22 14:16:30 -0500 |
| commit | 1278e9396f5a7572a8c02b1370e1b589feca5189 (patch) | |
| tree | d22dddb66abfebb6a7135901e454bfb4037e5fd6 | |
| parent | 502bdf76357b98e87a70db3911d497812c242a52 (diff) | |
adjust default library monitor behavior
| -rw-r--r-- | MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs index 49cf4c162..2c082ac36 100644 --- a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs +++ b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs @@ -160,7 +160,7 @@ namespace MediaBrowser.Server.Implementations.IO switch (ConfigurationManager.Configuration.EnableLibraryMonitor) { case AutoOnOff.Auto: - return _appHost.SupportsLibraryMonitor; + return Environment.OSVersion.Platform == PlatformID.Win32NT; case AutoOnOff.Enabled: return true; default: |
