Skip to content

Commit a7da5cf

Browse files
committed
executeStatement prepends other code onto the command, so don't add \x10 at the start of line as then it just ends up in the middle of what's sent
1 parent 1a5eea9 commit a7da5cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/utils.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,8 @@ while (d!==undefined) {console.log(btoa(d));d=f.read(${CHUNKSIZE});}
450450

451451
// Upload a file
452452
function uploadFile(fileName, contents, callback) {
453-
var js = "\x10"+getUploadFileCode(fileName, contents).replace(/\n/g,"\n\x10");
453+
var js = getUploadFileCode(fileName, contents).replace(/\n/g,"\n\x10");
454+
// executeStatement prepends other code onto the command, so don't add `\x10` at the start of line as then it just ends up in the middle of what's sent
454455
Espruino.Core.Utils.executeStatement(js, callback);
455456
}
456457

0 commit comments

Comments
 (0)