1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00

Fixed: UsenetBlackhole not importing since latest develop.

This commit is contained in:
Taloth Saldono 2016-03-17 08:01:07 +01:00
parent eb70a6419c
commit d68ad98176

View File

@ -103,7 +103,7 @@ private IEnumerable<WatchFolderItem> GetDownloadItems(string watchFolder, Dictio
var oldWatchItem = lastWatchItems.GetValueOrDefault(newWatchItem.DownloadId);
if (PreCheckWatchItemExpiry(oldWatchItem, newWatchItem))
if (PreCheckWatchItemExpiry(newWatchItem, oldWatchItem))
{
newWatchItem.TotalSize = _diskProvider.GetFileSize(videoFile);
newWatchItem.Hash = GetHash(videoFile);