New: Added OZnzb.com as a default indexer

This commit is contained in:
Mark McDowall 2013-12-30 21:44:07 -08:00
parent 72e56a1845
commit 195cf97303
1 changed files with 8 additions and 0 deletions

View File

@ -46,6 +46,14 @@ namespace NzbDrone.Core.Indexers.Newznab
Settings = GetSettings("https://dognzb.cr", new List<Int32>())
});
list.Add(new IndexerDefinition
{
Enable = false,
Name = "OZnzb.com",
Implementation = GetType().Name,
Settings = GetSettings("https://www.oznzb.com", new List<Int32>())
});
return list;
}