fix(live_status): remove ephemeral flag from error message in channel permissions

This commit is contained in:
2025-11-03 13:41:09 +01:00
parent 4b6b2c8575
commit a577f99277

View File

@@ -30,7 +30,7 @@ const cmd : CommandDefinition = {
try { try {
message = await channel.send({components: [statusService.getUpdatedContainer(true)], flags: [MessageFlags.IsComponentsV2]}); message = await channel.send({components: [statusService.getUpdatedContainer(true)], flags: [MessageFlags.IsComponentsV2]});
} catch (error) { } 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; return;
} }