Skip to content

Commit

Permalink
send finish message
Browse files Browse the repository at this point in the history
  • Loading branch information
minarin0179 committed Oct 16, 2024
1 parent 1790ca8 commit ed511ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/slashcommands/archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default new SlashCommand({
) as SlashCommandBuilder,

execute: async ({ interaction, args }) => {
await interaction.deferReply({ ephemeral: true });
await reply(interaction, "処理を実行中です...");

const targetCategory = args.getChannel<ChannelType.GuildCategory | ChannelType.GuildText>(
"保存するカテゴリ",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/slashcommands/copy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default new SlashCommand({
) as SlashCommandBuilder,

execute: async ({ interaction, args }) => {
await interaction.deferReply({ ephemeral: true });
await reply(interaction, "処理を実行中です...");

const originalChannel = (args.getChannel("対象") ?? interaction.channel) as GuildChannel;

Expand Down

0 comments on commit ed511ec

Please sign in to comment.