Add changelog entry, wrap long line.
This commit is contained in:
@@ -15,6 +15,9 @@
|
|||||||
* Number of concurrent downloads now defaults to num-cores minus one. Though downloads are I/O
|
* Number of concurrent downloads now defaults to num-cores minus one. Though downloads are I/O
|
||||||
bound rather than CPU bound, this still turns out to be a decent default.
|
bound rather than CPU bound, this still turns out to be a decent default.
|
||||||
|
|
||||||
|
* Avoid checking for proxy config if `https.proxyHost` is set. This matches existing behavior when
|
||||||
|
`http.proxyHost` is set.
|
||||||
|
|
||||||
## 1.8.2 - Nov 27, 2018
|
## 1.8.2 - Nov 27, 2018
|
||||||
|
|
||||||
* Fixed a data corruption bug introduced at last minute into 1.8.1 release. Oops.
|
* Fixed a data corruption bug introduced at last minute into 1.8.1 release. Oops.
|
||||||
|
|||||||
@@ -223,7 +223,8 @@ public abstract class Getdown extends Thread
|
|||||||
protected boolean detectProxy ()
|
protected boolean detectProxy ()
|
||||||
{
|
{
|
||||||
// we may already have a proxy configured
|
// we may already have a proxy configured
|
||||||
if (System.getProperty("http.proxyHost") != null || System.getProperty("https.proxyHost") != null) {
|
if (System.getProperty("http.proxyHost") != null ||
|
||||||
|
System.getProperty("https.proxyHost") != null) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user