aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/LibraryMonitor.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-01 13:26:09 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-01 13:26:09 -0400
commit085470394e60fa919581b2f19dc234eeb985993a (patch)
tree45be02aed7e689730b128a97b1ae9c3324cd3a60 /Emby.Server.Implementations/IO/LibraryMonitor.cs
parent11228356888409abc80d1a45dcacf737dcf17313 (diff)
update home screen sections
Diffstat (limited to 'Emby.Server.Implementations/IO/LibraryMonitor.cs')
-rw-r--r--Emby.Server.Implementations/IO/LibraryMonitor.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/Emby.Server.Implementations/IO/LibraryMonitor.cs b/Emby.Server.Implementations/IO/LibraryMonitor.cs
index 56b10a7e6..c99b601c9 100644
--- a/Emby.Server.Implementations/IO/LibraryMonitor.cs
+++ b/Emby.Server.Implementations/IO/LibraryMonitor.cs
@@ -333,13 +333,7 @@ namespace Emby.Server.Implementations.IO
NotifyFilters.Attributes;
newWatcher.Created += watcher_Changed;
-
- // Seeing mono crashes on background threads we can't catch, testing if this might help
- if (_environmentInfo.OperatingSystem == MediaBrowser.Model.System.OperatingSystem.Windows)
- {
- newWatcher.Deleted += watcher_Changed;
- }
-
+ newWatcher.Deleted += watcher_Changed;
newWatcher.Renamed += watcher_Changed;
newWatcher.Changed += watcher_Changed;