diff --git a/mirai-core/src/commonMain/kotlin/network/components/SsoProcessor.kt b/mirai-core/src/commonMain/kotlin/network/components/SsoProcessor.kt index a853b7069..330e0bdb3 100644 --- a/mirai-core/src/commonMain/kotlin/network/components/SsoProcessor.kt +++ b/mirai-core/src/commonMain/kotlin/network/components/SsoProcessor.kt @@ -310,7 +310,10 @@ internal class SsoProcessorImpl( // retry once if (!allowSlider) collectThrow(createUnsupportedSliderCaptchaException(allowSlider)) allowSlider = false - response = WtLogin9(client, allowSlider).sendAndExpect() + // TODO Reconnect without slider request + // Need to create new connection NOT send it in current connection + // response = WtLogin9(client, allowSlider).sendAndExpect() + collectThrow(createUnsupportedSliderCaptchaException(false)) } }