Ups the max requests thread allowed to support people with over 1000 follows

This commit is contained in:
Vitor Pamplona
2025-09-24 12:37:04 -04:00
parent ccf64687a8
commit 45b7b5601b
@@ -61,7 +61,8 @@ class OkHttpClientFactory(
val myDispatcher =
Dispatcher().apply {
if (!isEmulator()) {
maxRequests = 512
maxRequestsPerHost = 10
maxRequests = 1024
} else {
Log.i("OkHttpClientFactory", "Emulator detected, using default maxRequests: 64.")
}