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:17:31 -0500 |
| commit | 02ad5527926a3081b828300546b6945978f7da04 (patch) | |
| tree | 0b7aec5cf61d6ad6b6467524d1bf974be3d2d93d | |
| parent | eca02c7360e69fb2c2ef17427d6315587d625e3d (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 97f082295..85ea8ec57 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: |
