mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Fixed: Only throw API key error for OMG when notice contains "api"
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Xml.Linq;
|
||||
using NzbDrone.Common;
|
||||
using NzbDrone.Core.Indexers.Exceptions;
|
||||
|
||||
namespace NzbDrone.Core.Indexers.Omgwtfnzbs
|
||||
@@ -21,6 +22,8 @@ namespace NzbDrone.Core.Indexers.Omgwtfnzbs
|
||||
|
||||
if (notice == null) return true;
|
||||
|
||||
if (!notice.Value.ContainsIgnoreCase("api")) return true;
|
||||
|
||||
throw new ApiKeyException(notice.Value);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user