Bump OkHttp and re-enable fast fallback

It wasn't very stable last time, but we'll see how it goes in preview builds.
This commit is contained in:
arkon
2022-08-31 16:51:33 -04:00
parent 2f26982e34
commit 30b86e530b
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class NetworkHelper(context: Context) {
.connectTimeout(30, TimeUnit.SECONDS)
.readTimeout(30, TimeUnit.SECONDS)
.callTimeout(2, TimeUnit.MINUTES)
// .fastFallback(true) // TODO: re-enable when OkHttp 5 is stabler
.fastFallback(true)
.addInterceptor(userAgentInterceptor)
.addNetworkInterceptor(http103Interceptor)