From 83fe6f6234c6cb07675fdda9e2d80ebf217aaae7 Mon Sep 17 00:00:00 2001 From: creeper123123321 <7974274+creeper123123321@users.noreply.github.com> Date: Thu, 18 Feb 2021 06:49:31 -0300 Subject: [PATCH] update confirmation 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 29ff6e8..15e7a4d 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? info: " + JSON.stringify(parsed))) { + if (confirm("Allow auth impersonation from VIAaaS instance for username " + parsed.user + "?\nSession Hash: " + parsed.session_hash + "\nServer Message: " + parsed.message)) { let account = findAccountByMcName(parsed.user); if (account) { getMcUserToken(account).then(data => {