From 8325625cb26450e2f5f1d118bd3b3e86ca217f0c Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Mon, 6 Jul 2026 00:49:15 +0100 Subject: oops --- 174bg/discord-bot/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '174bg/discord-bot') diff --git a/174bg/discord-bot/main.js b/174bg/discord-bot/main.js index b911e1d..adebe04 100644 --- a/174bg/discord-bot/main.js +++ b/174bg/discord-bot/main.js @@ -127,7 +127,8 @@ const commands = [ execute: async (interaction) => { // get "tickets" category const ticketsCategory = interaction.guild.channels.cache.find( - (channel) => channel.name === "tickets" && channel.type === 4, + (channel) => + channel.name.toLowerCase() === "tickets" && channel.type === 4, ); if (!ticketsCategory) -- cgit v1.2.3