mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
LoginEncryptionUtils: Add proper string for no Xbox account (#1139)
This commit is contained in:
parent
e2a9566926
commit
1fb68dc9e3
2 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ public class LoginEncryptionUtils {
|
||||||
connector.getLogger().debug(String.format("Is player data valid? %s", validChain));
|
connector.getLogger().debug(String.format("Is player data valid? %s", validChain));
|
||||||
|
|
||||||
if (!validChain) {
|
if (!validChain) {
|
||||||
session.disconnect(LanguageUtils.getLocaleStringLog("geyser.auth.login.form.notice.desc"));
|
session.disconnect(LanguageUtils.getLocaleStringLog("geyser.network.remote.invalid_xbox_account"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
JWSObject jwt = JWSObject.parse(certChainData.get(certChainData.size() - 1).asText());
|
JWSObject jwt = JWSObject.parse(certChainData.get(certChainData.size() - 1).asText());
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit bd69044f8f69783bd9a7d8b4922b9122044a2a1e
|
Subproject commit 57e5986bd99bf3d81d67c75299ea3dde67d53554
|
Loading…
Reference in a new issue