Fixed: Manual import for unknown series items will properly mark as imported

Fixes: #277
(cherry picked from commit 3ffcf114682f9b1730f54706ecbf1bf237206bb1)
This commit is contained in:
Mark McDowall
2020-05-24 10:11:10 -07:00
committed by ta264
parent 842f80d567
commit 95d93dfa09
6 changed files with 39 additions and 15 deletions
@@ -1,4 +1,4 @@
using NzbDrone.Common.Messaging;
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Download.TrackedDownloads;
namespace NzbDrone.Core.Download
@@ -6,10 +6,12 @@ namespace NzbDrone.Core.Download
public class DownloadCompletedEvent : IEvent
{
public TrackedDownload TrackedDownload { get; private set; }
public int AuthorId { get; set; }
public DownloadCompletedEvent(TrackedDownload trackedDownload)
public DownloadCompletedEvent(TrackedDownload trackedDownload, int authorId)
{
TrackedDownload = trackedDownload;
AuthorId = authorId;
}
}
}