Skip to content

Commit

Permalink
chore: make github link references not ping (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldietzler authored Aug 9, 2024
1 parent d014037 commit dff665e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/discord/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ export class DiscordEvents {

const links = await this.service.handleGithubReferences(message.content);
if (links.length !== 0) {
await message.reply({ content: links.join('\n'), flags: [MessageFlags.SuppressEmbeds] });
await message.reply({
content: links.join('\n'),
flags: [MessageFlags.SuppressEmbeds, MessageFlags.SuppressNotifications],
});
}
}

Expand Down

0 comments on commit dff665e

Please sign in to comment.