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:11 -0500 |
| commit | 24b65b303fcfdd271b885dd4b7eab6c1a04c894e (patch) | |
| tree | e7593dc71aaf1d5b1bf3c7cccef4b6026da361e3 /MediaBrowser.Server.Implementations | |
| parent | 86e7f58bb627d7d87f401dd811b1f32bd6e44c20 (diff) | |
adjust default library monitor behavior
Diffstat (limited to 'MediaBrowser.Server.Implementations')
| -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: |
