mirror of
https://github.com/InsanusMokrassar/CaptchaPlaguBotPlugin.git
synced 2024-11-25 11:38:55 +00:00
fixes in simple captcha provider
This commit is contained in:
parent
f84edb7860
commit
87a6cab33e
@ -146,7 +146,7 @@ data class SimpleCaptchaProvider(
|
|||||||
newUsers.mapNotNull {
|
newUsers.mapNotNull {
|
||||||
safelyWithoutExceptions {
|
safelyWithoutExceptions {
|
||||||
launch {
|
launch {
|
||||||
doInSubContext {
|
doInSubContext(stopOnCompletion = false) {
|
||||||
val callbackData = uuid4().toString()
|
val callbackData = uuid4().toString()
|
||||||
val sentMessage = sendTextMessage(
|
val sentMessage = sendTextMessage(
|
||||||
chat,
|
chat,
|
||||||
@ -179,11 +179,14 @@ data class SimpleCaptchaProvider(
|
|||||||
stop()
|
stop()
|
||||||
}
|
}
|
||||||
|
|
||||||
delay((userBanDateTime - eventDateTime).millisecondsLong)
|
launch {
|
||||||
|
delay((userBanDateTime - eventDateTime).millisecondsLong)
|
||||||
|
|
||||||
job.cancel()
|
job.cancel()
|
||||||
if (kick) {
|
if (kick) {
|
||||||
safelyWithoutExceptions { kickChatMember(chat, it) }
|
safelyWithoutExceptions { kickChatMember(chat, it) }
|
||||||
|
}
|
||||||
|
stop()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user