diff --git a/src/NzbDrone.Common/Disk/FileSystemLookupService.cs b/src/NzbDrone.Common/Disk/FileSystemLookupService.cs index 740bbd6c7..f15d1c3e3 100644 --- a/src/NzbDrone.Common/Disk/FileSystemLookupService.cs +++ b/src/NzbDrone.Common/Disk/FileSystemLookupService.cs @@ -20,7 +20,7 @@ namespace NzbDrone.Common.Disk private readonly HashSet _setToRemove = new HashSet { - //Windows + // Windows "boot", "bootmgr", "cache", @@ -32,14 +32,20 @@ namespace NzbDrone.Common.Disk "temporary internet files", "windows", - //OS X + // OS X ".fseventd", ".spotlight", ".trashes", ".vol", "cachedmessages", "caches", - "trash" + "trash", + + // QNAP + ".@__thumb", + + // Synology + "@eadir" }; public FileSystemLookupService(IDiskProvider diskProvider, Logger logger)