mirror of https://github.com/lidarr/Lidarr
Don't store successful results for invalid providers
(cherry picked from commit de23182d593e2284972103d505e66dd8d812dfdb)
This commit is contained in:
parent
6ac42e268e
commit
b919941891
|
@ -59,6 +59,11 @@ namespace NzbDrone.Core.ThingiProvider.Status
|
||||||
|
|
||||||
public virtual void RecordSuccess(int providerId)
|
public virtual void RecordSuccess(int providerId)
|
||||||
{
|
{
|
||||||
|
if (providerId <= 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
lock (_syncRoot)
|
lock (_syncRoot)
|
||||||
{
|
{
|
||||||
var status = GetProviderStatus(providerId);
|
var status = GetProviderStatus(providerId);
|
||||||
|
|
Loading…
Reference in New Issue