diff --git a/src/NzbDrone.Core/Download/Clients/Blackhole/ScanWatchFolder.cs b/src/NzbDrone.Core/Download/Clients/Blackhole/ScanWatchFolder.cs index 433a12147..8d28fbd6a 100644 --- a/src/NzbDrone.Core/Download/Clients/Blackhole/ScanWatchFolder.cs +++ b/src/NzbDrone.Core/Download/Clients/Blackhole/ScanWatchFolder.cs @@ -103,7 +103,7 @@ namespace NzbDrone.Core.Download.Clients.Blackhole var oldWatchItem = lastWatchItems.GetValueOrDefault(newWatchItem.DownloadId); - if (PreCheckWatchItemExpiry(oldWatchItem, newWatchItem)) + if (PreCheckWatchItemExpiry(newWatchItem, oldWatchItem)) { newWatchItem.TotalSize = _diskProvider.GetFileSize(videoFile); newWatchItem.Hash = GetHash(videoFile);