From 4fe8cc3fd6602c5ac87e18724ede65515a445e2b Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Tue, 3 Mar 2020 09:10:28 +0000 Subject: [PATCH] Fix "Unknown app undefined" in 'My Apps' when installing a new app (fix #106) --- comms.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comms.js b/comms.js index 25ec45f89..e9a6234ce 100644 --- a/comms.js +++ b/comms.js @@ -18,7 +18,7 @@ uploadApp : (app,skipReset) => { if (fileContents.length==0) { Puck.write(`\x10E.showMessage('Hold BTN3\\nto reload')\n`,(result) => { if (result===null) return reject(""); - resolve(appJSON); + resolve(app); }); return; }