handle Rejected Downloads when matched to localEpisode

pull/7601/head
Stevie Robinson 3 months ago
parent 97de923d70
commit 81108a3d7f

@ -22,7 +22,7 @@ public class RejectedImportService : IRejectedImportService
public bool Process(TrackedDownload trackedDownload, ImportResult importResult)
{
if (importResult.Result != ImportResultType.Rejected || importResult.ImportDecision.LocalEpisode != null)
if (importResult.Result != ImportResultType.Rejected || importResult.ImportDecision.LocalEpisode == null)
{
return false;
}

Loading…
Cancel
Save