diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-10-18 00:47:02 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-10-21 00:47:53 +0200 |
commit | 5b3dffce62f7e4c00436adeca33c5f2fc4a21db4 (patch) | |
tree | 01a0eb2d994a9b0622697a6dbb124966692e692a /launcher/minecraft/auth/flows | |
parent | 297d4b4196c9bd1d9c4dd422dd88aaec620038d6 (diff) | |
download | PrismLauncher-5b3dffce62f7e4c00436adeca33c5f2fc4a21db4.tar.gz PrismLauncher-5b3dffce62f7e4c00436adeca33c5f2fc4a21db4.tar.bz2 PrismLauncher-5b3dffce62f7e4c00436adeca33c5f2fc4a21db4.zip |
NOISSUE continue debranding...
Diffstat (limited to 'launcher/minecraft/auth/flows')
-rw-r--r-- | launcher/minecraft/auth/flows/Yggdrasil.cpp | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/launcher/minecraft/auth/flows/Yggdrasil.cpp b/launcher/minecraft/auth/flows/Yggdrasil.cpp index ce828fd4..20ca63d0 100644 --- a/launcher/minecraft/auth/flows/Yggdrasil.cpp +++ b/launcher/minecraft/auth/flows/Yggdrasil.cpp @@ -241,13 +241,16 @@ void Yggdrasil::processReply() case QNetworkReply::SslHandshakeFailedError: changeState( STATE_FAILED_SOFT, - tr("<b>SSL Handshake failed.</b><br/>There might be a few causes for it:<br/>" - "<ul>" - "<li>You use Windows and need to update your root certificates, please install any outstanding updates.</li>" - "<li>Some device on your network is interfering with SSL traffic. In that case, " - "you have bigger worries than Minecraft not starting.</li>" - "<li>Possibly something else. Check the MultiMC log file for details</li>" - "</ul>")); + tr( + "<b>SSL Handshake failed.</b><br/>There might be a few causes for it:<br/>" + "<ul>" + "<li>You use Windows and need to update your root certificates, please install any outstanding updates.</li>" + "<li>Some device on your network is interfering with SSL traffic. In that case, " + "you have bigger worries than Minecraft not starting.</li>" + "<li>Possibly something else. Check the %1 log file for details</li>" + "</ul>" + ).arg(BuildConfig.LAUNCHER_NAME) + ); return; // used for invalid credentials and similar errors. Fall through. case QNetworkReply::ContentAccessDenied: |