From 82f2b77dfbd7a7725d8fd0e5ae5d0ccafb3123d9 Mon Sep 17 00:00:00 2001 From: Wizzard Date: Thu, 8 Feb 2024 20:24:12 -0500 Subject: [PATCH] .toggleimages fix --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 76ed198..cfd9611 100644 --- a/main.js +++ b/main.js @@ -67,7 +67,7 @@ client.on('messageCreate', async message => { let response = "Image forwarding status for channels:\n"; Object.keys(channelMappings).forEach(sourceChannelId => { const status = channelSettings.includeImages[sourceChannelId] ? "Enabled" : "Disabled"; - response += `- <#${sourceChannelId}> - (sourceChannelId): ${status}\n`; + response += `- <#${sourceChannelId}> - (${sourceChannelId}): ${status}\n`; }); return message.channel.send(response).then(msg => setTimeout(() => msg.delete(), 10000)); } else if (args.length === 2) {