From b950827deb3b4609d03de7e7eb8c61eb7a6cf996 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Sat, 27 Sep 2025 17:42:27 -0700 Subject: [PATCH] fix: command names --- src/modules/handleChatCommand.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/handleChatCommand.ts b/src/modules/handleChatCommand.ts index f68887a..b4563d8 100644 --- a/src/modules/handleChatCommand.ts +++ b/src/modules/handleChatCommand.ts @@ -20,10 +20,10 @@ interface Query { } const buildQuery = (type: string, id: string): Query => { - if (type === "question") { + if (type === "questions") { return { questionChannelId: id }; } - if (type === "answer") { + if (type === "answers") { return { answerChannelId: id }; } return {};