From 34d9e455edc2b798e4b9178648d3b11453589492 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Tue, 15 Mar 2022 16:42:36 +0000 Subject: [PATCH 1/2] fix regression caused by lint 'fix' --- core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core b/core index c30775453..6e94cf77a 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit c307754532cf0aa675945f98be46fdc9aa5d96af +Subproject commit 6e94cf77a2b355389dcd5efa55e2249a9b31983c From aa3bf728fae977828f2508e5efe63bb5729abb2a Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Tue, 15 Mar 2022 16:43:22 +0000 Subject: [PATCH 2/2] Fix file save http://forum.espruino.com/comments/16439814/ --- backup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup.js b/backup.js index a0855cdf3..b0159036d 100644 --- a/backup.js +++ b/backup.js @@ -45,7 +45,7 @@ function bangleDownload() { }).then(() => { return Comms.showMessage(Const.MESSAGE_RELOAD); }).then(() => { - return zip.generateAsync({type:"blob"}); + return zip.generateAsync({type:"binarystring"}); }).then(content => { Progress.hide({ sticky: true }); showToast('Backup complete!', 'success');