From 31eb4c67baacf55d4ae721d09a978471e746b8bc Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Fri, 13 Mar 2026 16:59:57 +0500 Subject: [PATCH] improve error message 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 7a48fa7f8..df43bdbad 100644 --- a/launcher/LaunchController.cpp +++ b/launcher/LaunchController.cpp @@ -189,7 +189,7 @@ LaunchDecision LaunchController::decideLaunchMode() QString reauthReason; switch (state) { case AccountState::Errored: - reauthReason = tr("Could not refresh '%1' due to an error").arg(accountToCheck->profileName()); + reauthReason = tr("An error occurred while refreshing '%1'").arg(accountToCheck->profileName()); break; case AccountState::Expired: reauthReason = tr("'%1' has expired and needs to be reauthenticated").arg(accountToCheck->profileName());