From a577f9927791762b293969ff3c39da2e86c7f116 Mon Sep 17 00:00:00 2001 From: CL TheDreWen Date: Mon, 3 Nov 2025 13:41:09 +0100 Subject: [PATCH] fix(live_status): remove ephemeral flag from error message 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 06e26f9..a791b6c 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.editReply({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.'}); return; }