Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
Add more delay
Browse files Browse the repository at this point in the history
  • Loading branch information
qhy040404 committed Jun 30, 2023
1 parent a6da1dd commit dc9ee4e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ object Requests {
try {
runBlocking(Dispatchers.IO) {
if (url.contains(EDU_HOST)) {
delay(200L)
delay(500L)
}
client.newCall(request).execute()
}.use { response ->
Expand Down Expand Up @@ -145,7 +145,7 @@ object Requests {
try {
runBlocking(Dispatchers.IO) {
if (url.contains(EDU_HOST)) {
delay(200L)
delay(500L)
}
client.newCall(request).execute()
}.use { response ->
Expand Down

0 comments on commit dc9ee4e

Please sign in to comment.