We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c33bd commit bed6c40Copy full SHA for bed6c40
lib/actions/write.js
@@ -47,7 +47,10 @@ function processAction(msg) {
47
rowCount
48
});
49
const fileName = messageToEmit.id + '.csv';
50
- messageToEmit.attachments[fileName] = signedUrl.get_url;
+ messageToEmit.attachments[fileName] = {
51
+ "content-type": "text/csv",
52
+ url: signedUrl.get_url
53
+ };
54
console.log('%j', messageToEmit);
55
signedUrl = null;
56
rowCount = 0;
0 commit comments