From 4b6b2c85750819a95f2ebe1662adbadd1ddf205e Mon Sep 17 00:00:00 2001 From: CL TheDreWen Date: Mon, 3 Nov 2025 13:40:39 +0100 Subject: [PATCH] fix(live_status): change reply to editReply for error handling in channel permissions --- src/commands/utility/live_status.command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/utility/live_status.command.ts b/src/commands/utility/live_status.command.ts index b0d900b..06e26f9 100644 --- a/src/commands/utility/live_status.command.ts +++ b/src/commands/utility/live_status.command.ts @@ -30,7 +30,7 @@ const cmd : CommandDefinition = { try { message = await channel.send({components: [statusService.getUpdatedContainer(true)], flags: [MessageFlags.IsComponentsV2]}); } catch (error) { - await interaction.reply({content: 'An error has occurred. Please check the permissions for the channel.', flags: [MessageFlags.Ephemeral]}); + await interaction.editReply({content: 'An error has occurred. Please check the permissions for the channel.', flags: [MessageFlags.Ephemeral]}); return; }