mirror of
https://github.com/Radarr/Radarr
synced 2026-01-09 00:56:11 +01:00
Fixed: Radarr List not Logging List Status Failures
This commit is contained in:
parent
16c912ffea
commit
c04f26b7f1
1 changed files with 3 additions and 0 deletions
|
|
@ -62,10 +62,13 @@ public override NetImportFetchResult Fetch()
|
|||
});
|
||||
}
|
||||
}
|
||||
|
||||
_netImportStatusService.RecordSuccess(Definition.Id);
|
||||
}
|
||||
catch
|
||||
{
|
||||
anyFailure = true;
|
||||
_netImportStatusService.RecordFailure(Definition.Id);
|
||||
}
|
||||
|
||||
return new NetImportFetchResult { Movies = movies, AnyFailure = anyFailure };
|
||||
|
|
|
|||
Loading…
Reference in a new issue