nzbs.org back to http only
Fixed: nzbs.org will no longer use SSL to prevent errors
This commit is contained in:
parent
86e81efc16
commit
ad92ba1083
|
@ -110,7 +110,7 @@ namespace NzbDrone.Core
|
||||||
|
|
||||||
var newznabIndexers = new List<NewznabDefinition>
|
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 = "Nzb.su", Url = "https://nzb.su", BuiltIn = true },
|
||||||
new NewznabDefinition { Enable = false, Name = "Dognzb.cr", Url = "https://dognzb.cr", BuiltIn = true }
|
new NewznabDefinition { Enable = false, Name = "Dognzb.cr", Url = "https://dognzb.cr", BuiltIn = true }
|
||||||
};
|
};
|
||||||
|
|
|
@ -106,6 +106,7 @@ namespace NzbDrone.Core.Providers
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
currentIndexer.Url = indexerLocal.Url;
|
||||||
currentIndexer.BuiltIn = true;
|
currentIndexer.BuiltIn = true;
|
||||||
Save(currentIndexer);
|
Save(currentIndexer);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue