From 571be95378dfc0353abe3ecf675ae787cac5f477 Mon Sep 17 00:00:00 2001 From: creeper123123321 <7974274+creeper123123321@users.noreply.github.com> Date: Wed, 24 Feb 2021 09:28:44 -0300 Subject: [PATCH] update auth msg --- src/main/resources/web/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/web/auth.js b/src/main/resources/web/auth.js index 15e7a4d..96bf982 100644 --- a/src/main/resources/web/auth.js +++ b/src/main/resources/web/auth.js @@ -290,7 +290,7 @@ function confirmJoin(hash) { socket.send(JSON.stringify({action: "session_hash_response", session_hash: hash})); } function handleJoinRequest(parsed) { - if (confirm("Allow auth impersonation from VIAaaS instance for username " + parsed.user + "?\nSession Hash: " + parsed.session_hash + "\nServer Message: " + parsed.message)) { + if (confirm("Allow auth impersonation from VIAaaS instance?\nUsername: " + parsed.user + "?\nSession Hash: " + parsed.session_hash + "\nServer Message: '" + parsed.message + "'")) { let account = findAccountByMcName(parsed.user); if (account) { getMcUserToken(account).then(data => {