Merge pull request #179 from vatsal22/use_proxy

Https proxy
This commit is contained in:
Michael Bayne
2019-01-04 10:52:08 -08:00
committed by GitHub
@@ -223,7 +223,7 @@ public abstract class Getdown extends Thread
protected boolean detectProxy ()
{
// we may already have a proxy configured
if (System.getProperty("http.proxyHost") != null) {
if (System.getProperty("http.proxyHost") != null || System.getProperty("https.proxyHost") != null) {
return true;
}