Fix bluetooth stringify param

master
Brian Whelan 2024-06-21 19:29:44 +01:00 committed by GitHub
parent 6ee5b73052
commit 936b6aabee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ exports.reply = function (options) {
layout.setUI(); layout.setUI();
layout.render(); layout.render();
if (options.sendReply == null || options.sendReply) { if (options.sendReply == null || options.sendReply) {
Bluetooth.println(JSON.stringify(result)); Bluetooth.println(JSON.stringify(responseMessage));
} }
resolve(responseMessage); resolve(responseMessage);
} }