Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit 2a3624d

Browse files
committed
fix(connection(: fix error with /connection
https://interchat.sentry.io/issues/4654550557
1 parent 23f19a8 commit 2a3624d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/slash/Main/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export default class Connection extends BaseCommand {
300300

301301
const newEmbeds = await buildEmbed(interaction, channelId);
302302
interaction.replied || interaction.deferred
303-
? await interaction.message.edit({ embeds: [newEmbeds] })
303+
? await interaction.message.edit({ embeds: [newEmbeds] }).catch(() => null)
304304
: await interaction.update({ embeds: [newEmbeds] });
305305
}
306306

0 commit comments

Comments
 (0)