mirror of
https://github.com/moparisthebest/Conversations
synced 2025-02-01 07:20:10 -05:00
always use http proxy for http requests. (socks is leaking dns)
This commit is contained in:
parent
8ffcc11f27
commit
b4a259837e
@ -95,10 +95,6 @@ public class HttpConnectionManager extends AbstractConnectionManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Proxy getProxy() throws IOException {
|
public Proxy getProxy() throws IOException {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
||||||
return new Proxy(Proxy.Type.SOCKS, new InetSocketAddress(InetAddress.getLocalHost(), 9050));
|
|
||||||
} else {
|
|
||||||
return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(InetAddress.getLocalHost(), 8118));
|
return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(InetAddress.getLocalHost(), 8118));
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user