From f7941b6431721da7ecfe19b3d795b42703394afc Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Wed, 4 Mar 2026 21:46:20 +0500 Subject: [PATCH] fix(LaunchController): emit failed with correct reason Signed-off-by: Octol1ttle --- launcher/LaunchController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/LaunchController.cpp b/launcher/LaunchController.cpp index cddac5f77..c5f73ed22 100644 --- a/launcher/LaunchController.cpp +++ b/launcher/LaunchController.cpp @@ -356,7 +356,7 @@ bool LaunchController::reauthenticateAccount(MinecraftAccountPtr account, QStrin } } - emitFailed(tr("The account has expired and needs to be reauthenticated")); + emitFailed(reason); return false; }