mirror of
https://git.mihon.tech/mihonapp/mihon
synced 2024-11-26 23:28:58 +03:00
Set network call timeout to 90 seconds (instead of infinite)
This commit is contained in:
parent
f060daf8c4
commit
7a0b54bb38
1 changed files with 1 additions and 0 deletions
|
@ -27,6 +27,7 @@ class NetworkHelper(context: Context) {
|
|||
.cookieJar(cookieManager)
|
||||
.connectTimeout(30, TimeUnit.SECONDS)
|
||||
.readTimeout(30, TimeUnit.SECONDS)
|
||||
.callTimeout(90, TimeUnit.SECONDS)
|
||||
// .fastFallback(true) // TODO: re-enable when OkHttp 5 is stabler
|
||||
.addInterceptor(UserAgentInterceptor())
|
||||
|
||||
|
|
Loading…
Reference in a new issue