diff options
author | Petr Mrázek <peterix@gmail.com> | 2022-03-18 17:59:11 +0100 |
---|---|---|
committer | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2022-04-07 18:29:10 +0200 |
commit | e6564aa69fe60e41a77fc10a7c98484d5c0cd488 (patch) | |
tree | 6a7a1a78745b742d3be1de8fc0d3c6a09eca35b3 /launcher/minecraft/auth/steps | |
parent | 566a83b245b347e3bef72153c2a68dbbf5233ce5 (diff) | |
download | PrismLauncher-e6564aa69fe60e41a77fc10a7c98484d5c0cd488.tar.gz PrismLauncher-e6564aa69fe60e41a77fc10a7c98484d5c0cd488.tar.bz2 PrismLauncher-e6564aa69fe60e41a77fc10a7c98484d5c0cd488.zip |
NOISSUE fix error string for Xbox authorization failures
Diffstat (limited to 'launcher/minecraft/auth/steps')
-rw-r--r-- | launcher/minecraft/auth/steps/XboxAuthorizationStep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/auth/steps/XboxAuthorizationStep.cpp b/launcher/minecraft/auth/steps/XboxAuthorizationStep.cpp index 07eeb7dc..589768e3 100644 --- a/launcher/minecraft/auth/steps/XboxAuthorizationStep.cpp +++ b/launcher/minecraft/auth/steps/XboxAuthorizationStep.cpp @@ -65,7 +65,7 @@ void XboxAuthorizationStep::onRequestDone( if(!processSTSError(error, data, headers)) { emit finished( AccountTaskState::STATE_FAILED_SOFT, - tr("Failed to get authorization for %1 services. Error %1.").arg(m_authorizationKind, error) + tr("Failed to get authorization for %1 services. Error %2.").arg(m_authorizationKind, error) ); } return; |