mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-08 09:23:47 +00:00
Merge pull request #883 from DRSchlaubi/patch-1
Delay after executing action in sendActionDSL
This commit is contained in:
commit
1990e6b158
@ -24,10 +24,10 @@ public suspend fun <T> TelegramBot.withAction(
|
||||
}
|
||||
val botActionJob = CoroutineScope(currentCoroutineContext()).launch {
|
||||
while (isActive) {
|
||||
delay(refreshTime)
|
||||
safelyWithoutExceptions {
|
||||
execute(actionRequest)
|
||||
}
|
||||
delay(refreshTime)
|
||||
}
|
||||
}
|
||||
val result = safelyWithResult { block() }
|
||||
|
Loading…
Reference in New Issue
Block a user