From be456442905eef90652604433b0f4f8c8b7482b8 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sat, 6 Sep 2025 00:19:29 -0400 Subject: [PATCH] Fix --- commands/analyze/read-qr-code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/analyze/read-qr-code.js b/commands/analyze/read-qr-code.js index ef22f49b..af16db8d 100644 --- a/commands/analyze/read-qr-code.js +++ b/commands/analyze/read-qr-code.js @@ -43,7 +43,7 @@ module.exports = class ReadQRCodeCommand extends Command { if (err) return rej(err); return res(value); } - qr.decode(imgData); + return qr.decode(imgData); }); } };