recreate httpclient when changing the proxy or timeout

This commit is contained in:
greenart7c3 2024-01-24 17:18:25 -03:00
parent 3e102c064b
commit c7b2c20119
2 changed files with 4 additions and 1 deletions

View File

@ -51,6 +51,8 @@ object HttpClient {
fun start(proxy: Proxy?) {
if (internalProxy != proxy) {
Log.d("HttpClient", "Changing proxy to: ${proxy != null}")
this.defaultHttpClient = null
this.internalProxy = proxy
this.defaultHttpClient = getHttpClient()
}
@ -59,6 +61,7 @@ object HttpClient {
fun changeTimeouts(timeout: Duration) {
Log.d("HttpClient", "Changing timeout to: $timeout")
if (this.defaultTimeout.seconds != timeout.seconds) {
this.defaultHttpClient = null
this.defaultTimeout = timeout
this.defaultHttpClient = getHttpClient()
}

View File

@ -106,7 +106,7 @@ class Relay(
private var connectingBlock = AtomicBoolean()
fun connectAndRun(onConnected: (Relay) -> Unit) {
Log.d("Relay", "Relay.connect $url")
Log.d("Relay", "Relay.connect $url hasProxy: ${this.httpClient.proxy != null}")
// BRB is crashing OkHttp Deflater object :(
if (url.contains("brb.io")) return