do not use remote proxy if not switched on - regardless of the proto

pull/1/head
sixcooler 12 years ago
parent 69906b1d2e
commit 308d73f855

@ -85,7 +85,7 @@ public final class ProxySettings {
*/ */
public static boolean useForHost(final String host, Protocol protocol) { public static boolean useForHost(final String host, Protocol protocol) {
assert protocol != null; assert protocol != null;
if (protocol == Protocol.HTTP && !use) return false; if (!use) return false;
if (protocol == Protocol.HTTPS && !use4ssl) return false; if (protocol == Protocol.HTTPS && !use4ssl) return false;
if (protocol == Protocol.YACY && !use4YaCy) return false; if (protocol == Protocol.YACY && !use4YaCy) return false;
if (allowProxy.containsKey(host)) return true; if (allowProxy.containsKey(host)) return true;

Loading…
Cancel
Save