From 95c3e2a88a65ebf151a545cc481af1463d6d917a Mon Sep 17 00:00:00 2001 From: indifferentketchup Date: Fri, 10 Apr 2026 19:59:04 +0000 Subject: [PATCH] manual commit 2026-04-10T19:59:04Z --- handlers/commands.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/handlers/commands.js b/handlers/commands.js index bf59d27..fdd4081 100644 --- a/handlers/commands.js +++ b/handlers/commands.js @@ -918,7 +918,9 @@ async function handleCommand(interaction) { await interaction.showModal(modal); } catch (err) { console.error('Signature command error:', err); - await interaction.reply({ content: 'Failed to open signature settings.', ephemeral: true }); + if (!interaction.replied && !interaction.deferred) { + await interaction.reply({ content: 'Failed to open signature settings.', ephemeral: true }).catch(() => {}); + } } return; }