diff --git a/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs b/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs index 4f9e2972eb..a905c68d84 100644 --- a/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs +++ b/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs @@ -80,6 +80,14 @@ public override IEnumerable DefaultDefinitions Settings = GetSettings("https://www.oznzb.com", new List()) }); + list.Add(new IndexerDefinition + { + Enable = false, + Name = "nzbplanet.net", + Implementation = GetType().Name, + Settings = GetSettings("https://nzbplanet.net", new List()) + }); + return list; } }