From ac3073d3a2cf2ba69cfd828c626261c5404e7fa0 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 17 Oct 2021 19:36:03 +0300 Subject: [PATCH] fix: whoops --- backend/src/plugins/Post/commands/EditCmd.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/plugins/Post/commands/EditCmd.ts b/backend/src/plugins/Post/commands/EditCmd.ts index 2aafe690..317bb1ec 100644 --- a/backend/src/plugins/Post/commands/EditCmd.ts +++ b/backend/src/plugins/Post/commands/EditCmd.ts @@ -15,7 +15,6 @@ export const EditCmd = postCmd({ async run({ message: msg, args, pluginData }) { const targetMessage = await args.message.channel.messages.fetch(args.message.messageId); - console.log({ targetMessage }); if (!targetMessage) { sendErrorMessage(pluginData, msg.channel, "Unknown message"); return;