rm comments

This commit is contained in:
Jordan Eldredge 2020-04-25 01:06:00 -04:00
parent 39b82fbe0f
commit 087ddb842d

View file

@ -13,9 +13,7 @@ async function handler(message: Message) {
attachments.map(async (attachment) => {
const { filename, url } = attachment;
const response = await fetch(url);
console.log("got response");
const buffer = await response.buffer();
console.log("got buffer");
return { filename, buffer };
})
);