From 03f52c8a92b3c56b10234547e64b3b5a2a891724 Mon Sep 17 00:00:00 2001 From: Naiel <109038805+naielv@users.noreply.github.com> Date: Tue, 3 Mar 2026 11:06:30 +0100 Subject: [PATCH] fix --- src/app_modules.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app_modules.js b/src/app_modules.js index b89ed4d..bac7f5d 100644 --- a/src/app_modules.js +++ b/src/app_modules.js @@ -949,9 +949,11 @@ function TS_decrypt(input, secret, callback, table, id) { } // Encrypted format marker: RSA{} where is CryptoJS AES output + console.debug(input); if (input.startsWith('RSA{') && input.endsWith('}') && typeof CryptoJS !== 'undefined') { try { var data = input.slice(4, -1); + console.debug("TS_decrypt secret:", ">" + secret + "<", typeof secret, secret?.length); var words = CryptoJS.AES.decrypt(data, secret); var decryptedUtf8 = null; try {