mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-23 06:20:50 +00:00
Fixed: UsenetBlackhole not importing since latest develop.
This commit is contained in:
parent
eb70a6419c
commit
d68ad98176
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue