Linux: Ignore SSL certificate errors option added

Linux: Ignore SSL certificate errors option added
This commit is contained in:
flightlevel
2015-12-02 21:19:51 +11:00
parent 6262d937d4
commit 18a2db5af2
5 changed files with 24 additions and 1 deletions

View File

@@ -54,6 +54,9 @@ namespace Jackett.Console
[Option('f', "SSLFix", HelpText = "[true/false] Linux Libcurl NSS Missing ECC Ciphers workaround (Use if you can't access some trackers) .")]
public bool? SSLFix { get; set; }
[Option('n', "IgnoreSslErrors", HelpText = "[true/false] Linux Libcurl - Ignores invalid SSL certificates")]
public bool? IgnoreSslErrors { get; set; }
[ParserState]
public IParserState LastParserState { get; set; }
}