1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-05 08:09:21 +00:00

make DefaultKtorRequestsExecutor now uses runCatching instead of runCatchingSafely

This commit is contained in:
2024-10-24 22:53:34 +06:00
parent b8a6534b6a
commit 3d14c93d89
2 changed files with 2 additions and 1 deletions

View File

@@ -47,7 +47,7 @@ class DefaultKtorRequestsExecutor internal constructor(
}
override suspend fun <T : Any> execute(request: Request<T>): T {
return runCatchingSafely {
return runCatching {
logger.v { "Start request $request" }
pipelineStepsHolder.onBeforeSearchCallFactory(request, callsFactories)
requestsLimiter.limit(request) {