From 99d0abae50c2dfdfdbcaa4407535da218fc29ae7 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Mon, 6 Jul 2026 00:57:57 +0100 Subject: extend timestamp slice for channel name format in requisition ticket creation --- 174bg/discord-bot/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/174bg/discord-bot/main.js b/174bg/discord-bot/main.js index adebe04..d190c04 100644 --- a/174bg/discord-bot/main.js +++ b/174bg/discord-bot/main.js @@ -53,7 +53,7 @@ const commands = [ const timestamp = new Date() .toISOString() .replace(/[-:.T]/g, "") - .slice(2, 12); + .slice(2, 16); // YYMMDDHHMMSS const channelName = `req-${timestamp}`; const newChannel = await interaction.guild.channels.create({ -- cgit v1.2.3