Skip to content

Commit 4eac71f

Browse files
Editor: Change the hex file download type for application/octet-stream to text.
1 parent 59928f7 commit 4eac71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/python-main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ function web_editor(config) {
882882
}
883883
// This works in all other browser
884884
var filename = getSafeName();
885-
var blob = new Blob([output], { 'type': 'application/octet-stream' });
885+
var blob = new Blob([output], { 'type': 'text/plain' });
886886
saveAs(blob, filename + '.hex');
887887
}
888888

0 commit comments

Comments
 (0)