mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fixed: Regression prevented indexers from being re-enabled after a successful Test.
ref #1961
This commit is contained in:
parent
ab07a40931
commit
87f3cc9014
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ namespace NzbDrone.Core.Download
|
||||||
{
|
{
|
||||||
var result = base.Test(definition);
|
var result = base.Test(definition);
|
||||||
|
|
||||||
if (result == null && definition.Id != 0)
|
if ((result == null || result.IsValid) && definition.Id != 0)
|
||||||
{
|
{
|
||||||
_downloadClientStatusService.RecordSuccess(definition.Id);
|
_downloadClientStatusService.RecordSuccess(definition.Id);
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,7 +90,7 @@ namespace NzbDrone.Core.Indexers
|
||||||
{
|
{
|
||||||
var result = base.Test(definition);
|
var result = base.Test(definition);
|
||||||
|
|
||||||
if (result == null && definition.Id != 0)
|
if ((result == null || result.IsValid) && definition.Id != 0)
|
||||||
{
|
{
|
||||||
_indexerStatusService.RecordSuccess(definition.Id);
|
_indexerStatusService.RecordSuccess(definition.Id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue