From 032970a93e666ef10230107a60b38b177da61157 Mon Sep 17 00:00:00 2001 From: Evan Shapiro Date: Mon, 6 May 2024 20:04:08 -0700 Subject: [PATCH] bugfix --- src/bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.js b/src/bot.js index a8ba378..da9fb6e 100644 --- a/src/bot.js +++ b/src/bot.js @@ -368,7 +368,7 @@ const startAutoPosting = async (client, redisClient) => { const channelId = autoPostSurvey.split(':')[0] const surveyName = autoPostSurvey.split(':').slice(1).join(':'); - console.log('posting', surveyName, 'to', channel); + console.log('posting', surveyName, 'to', channelId); const messagesToSend = await makeSurveyPost(redisClient, surveyName); const channel = client.channels.cache.get(channelId)