From fd4b98ccfd50e6c6f4da01f72095a123b70fb1dc Mon Sep 17 00:00:00 2001 From: azures04 Date: Sun, 28 Dec 2025 21:11:36 +0100 Subject: [PATCH] Update utils.js --- modules/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utils.js b/modules/utils.js index 5845615..40a0860 100644 --- a/modules/utils.js +++ b/modules/utils.js @@ -26,7 +26,7 @@ async function getRegistrationCountryFromIp(ipAddress) { function signProfileData(dataBase64) { const serverKeys = certificatesManager.getKeys() try { - const privateKey = serverKeys.playerCertificateKeys.private + const privateKey = serverKeys.profilePropertyKeys.private const signer = crypto.createSign("SHA1") signer.update(dataBase64) signer.end()