mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-22 08:13:47 +00:00
small optimization of updates polling exception handling
This commit is contained in:
parent
8c76283db5
commit
88eebdc448
@ -27,13 +27,9 @@ fun RequestsExecutor.startGettingOfUpdates(
|
||||
while (isActive) {
|
||||
handleSafely(
|
||||
{ e ->
|
||||
when (e) {
|
||||
is HttpRequestTimeoutException -> exceptionsHandler ?.invoke(e)
|
||||
is RequestException -> {
|
||||
exceptionsHandler ?.invoke(e)
|
||||
delay(1000L)
|
||||
}
|
||||
else -> exceptionsHandler ?.invoke(e)
|
||||
exceptionsHandler ?.invoke(e)
|
||||
if (e is RequestException) {
|
||||
delay(1000L)
|
||||
}
|
||||
}
|
||||
) {
|
||||
|
Loading…
Reference in New Issue
Block a user