From 1fb6a27ab035a708e674314c82b71ffe801f1f61 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Mon, 27 May 2024 01:29:08 +1200 Subject: [PATCH] update error message --- src/mqtt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mqtt.js b/src/mqtt.js index 5d24027..9c78076 100644 --- a/src/mqtt.js +++ b/src/mqtt.js @@ -246,7 +246,7 @@ function decrypt(packet) { algorithm = "aes-256-ctr"; } else { // skip this key, try the next one... - console.error(`Invalid decryption key length: ${key.length}`); + console.error(`Skipping decryption key with invalid length: ${key.length}`); continue; }