nzbs.org back to http only

Fixed: nzbs.org will no longer use SSL to prevent errors
This commit is contained in:
Mark McDowall 2012-08-11 14:55:53 -07:00
parent 86e81efc16
commit ad92ba1083
2 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,7 @@ namespace NzbDrone.Core
var newznabIndexers = new List<NewznabDefinition>
{
new NewznabDefinition { Enable = false, Name = "Nzbs.org", Url = "https://nzbs.org", BuiltIn = true },
new NewznabDefinition { Enable = false, Name = "Nzbs.org", Url = "http://nzbs.org", BuiltIn = true },
new NewznabDefinition { Enable = false, Name = "Nzb.su", Url = "https://nzb.su", BuiltIn = true },
new NewznabDefinition { Enable = false, Name = "Dognzb.cr", Url = "https://dognzb.cr", BuiltIn = true }
};

View File

@ -106,6 +106,7 @@ namespace NzbDrone.Core.Providers
else
{
currentIndexer.Url = indexerLocal.Url;
currentIndexer.BuiltIn = true;
Save(currentIndexer);
}