From 195cf973033db8eaec6382bd48c127f592dacda2 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 30 Dec 2013 21:44:07 -0800 Subject: [PATCH] New: Added OZnzb.com as a default indexer --- src/NzbDrone.Core/Indexers/Newznab/Newznab.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs b/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs index 7e7df8e54..8a1be6f66 100644 --- a/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs +++ b/src/NzbDrone.Core/Indexers/Newznab/Newznab.cs @@ -46,6 +46,14 @@ namespace NzbDrone.Core.Indexers.Newznab Settings = GetSettings("https://dognzb.cr", new List()) }); + list.Add(new IndexerDefinition + { + Enable = false, + Name = "OZnzb.com", + Implementation = GetType().Name, + Settings = GetSettings("https://www.oznzb.com", new List()) + }); + return list; }