Update Webhook.kt

This commit is contained in:
InsanusMokrassar 2022-05-14 02:31:36 +06:00 committed by GitHub
parent e9ff93cde1
commit 82c6eda0b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -49,10 +49,11 @@ fun Route.includeWebhookHandlingInRoute(
transformer(update)
}.onSuccess {
call.respond(HttpStatusCode.OK)
}.onFailure {
call.respond(HttpStatusCode.InternalServerError)
}
} catch (e: Throwable) {
exceptionsHandler ?.invoke(e)
call.respond(HttpStatusCode.InternalServerError)
}
}
}