1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-25 21:23:55 +08:00

[core] Include login solver information in UnsupportedSliderCaptchaException

This commit is contained in:
Karlatemp 2022-11-15 18:13:07 +08:00
parent bbf3c09ae4
commit 85bf607b60
No known key found for this signature in database
GPG Key ID: BA173CA2B9956C59

View File

@ -241,6 +241,13 @@ internal class SsoProcessorImpl(
append(ssoContext.protocol)
append(" 强制要求滑块验证, 请更换协议后重试.")
}
append(", extra={ login-solver=")
bot.configuration.loginSolver.let { ls ->
append(ls)
append(" <")
append(ls?.let { it::class })
append(">")
}
append(" 另请参阅: https://github.com/project-mirai/mirai-login-solver-selenium")
}
)