Fixed: Don't Clean if any List Failures

Fixes #4648
pull/4598/head
Qstick 4 years ago
parent 8871864bc0
commit 16c912ffea

@ -49,7 +49,7 @@ namespace NzbDrone.Core.NetImport
var parser = GetParser();
var anyFailure = false;
var anyFailure = true;
try
{
@ -76,6 +76,7 @@ namespace NzbDrone.Core.NetImport
}
_netImportStatusService.RecordSuccess(Definition.Id);
anyFailure = false;
}
catch (WebException webException)
{

Loading…
Cancel
Save