We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 163d49c commit 35ae178Copy full SHA for 35ae178
1 file changed
V2rayNG/app/src/main/java/com/kiktor/v2whitelist/handler/SmartConnectManager.kt
@@ -176,9 +176,9 @@ object SmartConnectManager {
176
private fun startFailoverTimer(context: Context) {
177
failoverJob?.cancel()
178
failoverJob = CoroutineScope(Dispatchers.Main).launch {
179
- delay(5000)
+ delay(8000)
180
if (!V2RayServiceManager.isRunning()) {
181
- Log.w(AppConfig.TAG, "Connection failed within 5s, triggering failover")
+ Log.w(AppConfig.TAG, "Connection failed within 8s, triggering failover")
182
switchServer(context)
183
}
184
0 commit comments