From 0fd4dae03638410b9812ba3e240e06679e259379 Mon Sep 17 00:00:00 2001 From: si458 Date: Thu, 20 Mar 2025 19:31:27 +0000 Subject: [PATCH] fix getDeviceDetails for 3rd party libraries Signed-off-by: si458 --- meshuser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshuser.js b/meshuser.js index ac237dfd..d6907144 100644 --- a/meshuser.js +++ b/meshuser.js @@ -5359,7 +5359,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } } - output = JSON.stringify(results, null, 2); + output = JSON.stringify(results); } try { ws.send(JSON.stringify({ action: 'getDeviceDetails', data: output, type: type })); } catch (ex) { } });