1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-30 19:56:54 +00:00

New: NZBgeek added as preset indexer

This commit is contained in:
Mark McDowall 2014-07-20 21:07:36 -07:00
parent 98d79dab20
commit fdddb13686

View file

@ -88,6 +88,14 @@ namespace NzbDrone.Core.Indexers.Newznab
Settings = GetSettings("https://nzbplanet.net", new List<Int32>())
});
list.Add(new IndexerDefinition
{
Enable = false,
Name = "NZBgeek",
Implementation = GetType().Name,
Settings = GetSettings("https://api.nzbgeek.info", new List<Int32>())
});
return list;
}
}