Increase default OkHttp call timeout to 2 minutes

Which is still stupidly high, but maybe it'll be lenient enough for certain people.
This commit is contained in:
arkon 2022-04-17 11:32:47 -04:00
parent ef1bb4e800
commit cdd4ec6233

View File

@ -27,7 +27,7 @@ class NetworkHelper(context: Context) {
.cookieJar(cookieManager)
.connectTimeout(30, TimeUnit.SECONDS)
.readTimeout(30, TimeUnit.SECONDS)
.callTimeout(90, TimeUnit.SECONDS)
.callTimeout(2, TimeUnit.MINUTES)
// .fastFallback(true) // TODO: re-enable when OkHttp 5 is stabler
.addInterceptor(UserAgentInterceptor())