mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-22 22:43:31 -07:00
Fixed: Ensure failing providers are marked as failed when testing all
(cherry picked from commit f6c05d4456a5667398319e249614e2eed115621e)
This commit is contained in:
parent
35d3923947
commit
910b9835a7
2 changed files with 20 additions and 2 deletions
|
@ -74,10 +74,19 @@ namespace NzbDrone.Core.Download
|
||||||
{
|
{
|
||||||
var result = base.Test(definition);
|
var result = base.Test(definition);
|
||||||
|
|
||||||
if ((result == null || result.IsValid) && definition.Id != 0)
|
if (definition.Id == 0)
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result == null || result.IsValid)
|
||||||
{
|
{
|
||||||
_downloadClientStatusService.RecordSuccess(definition.Id);
|
_downloadClientStatusService.RecordSuccess(definition.Id);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_downloadClientStatusService.RecordFailure(definition.Id);
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,10 +75,19 @@ namespace NzbDrone.Core.ImportLists
|
||||||
{
|
{
|
||||||
var result = base.Test(definition);
|
var result = base.Test(definition);
|
||||||
|
|
||||||
if ((result == null || result.IsValid) && definition.Id != 0)
|
if (definition.Id == 0)
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result == null || result.IsValid)
|
||||||
{
|
{
|
||||||
_importListStatusService.RecordSuccess(definition.Id);
|
_importListStatusService.RecordSuccess(definition.Id);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_importListStatusService.RecordFailure(definition.Id);
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue