Skip to content

Commit

Permalink
fix: increase fetch timeout when bundled is cached
Browse files Browse the repository at this point in the history
  • Loading branch information
PalmDevs authored Oct 22, 2024
1 parent 5f3d7be commit 7a7dcef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/kotlin/io/github/revenge/xposed/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class Main : IXposedHookLoadPackage {
val client = HttpClient(CIO) {
expectSuccess = true
install(HttpTimeout) {
requestTimeoutMillis = if (bundle.exists()) 3000 else 10000
requestTimeoutMillis = if (bundle.exists()) 5000 else 10000
}
install(UserAgent) { agent = "RevengeXposed" }
}
Expand Down

0 comments on commit 7a7dcef

Please sign in to comment.