From 087ddb842d582cdb7ad269d025b480f367a75f27 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sat, 25 Apr 2020 01:06:00 -0400 Subject: [PATCH] rm comments --- experiments/skin-database/discord-bot/commands/archive.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/experiments/skin-database/discord-bot/commands/archive.ts b/experiments/skin-database/discord-bot/commands/archive.ts index 1c1f8bb3..b156786e 100644 --- a/experiments/skin-database/discord-bot/commands/archive.ts +++ b/experiments/skin-database/discord-bot/commands/archive.ts @@ -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 }; }) );