From 1c645577d4973d0d591e6cfacb679cca2b2a6cb4 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Mon, 1 Jun 2026 14:20:06 +0500 Subject: [PATCH] fix(AuthFlow): don't call MSADeviceCodeStep::abort twice Signed-off-by: Octol1ttle --- launcher/minecraft/auth/AuthFlow.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/launcher/minecraft/auth/AuthFlow.cpp b/launcher/minecraft/auth/AuthFlow.cpp index 5b8f98122..9b017094c 100644 --- a/launcher/minecraft/auth/AuthFlow.cpp +++ b/launcher/minecraft/auth/AuthFlow.cpp @@ -23,7 +23,6 @@ AuthFlow::AuthFlow(AccountData* data, Action action) : Task(), m_data(data) if (action == Action::DeviceCode) { auto oauthStep = makeShared(m_data); connect(oauthStep.get(), &MSADeviceCodeStep::authorizeWithBrowser, this, &AuthFlow::authorizeWithBrowserWithExtra); - connect(this, &Task::aborted, oauthStep.get(), &MSADeviceCodeStep::abort); m_steps.append(oauthStep); } else { auto oauthStep = makeShared(m_data, action == Action::Refresh);