Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Commit

Permalink
fix: remove team eddie role
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Jun 22, 2024
1 parent d40e1c3 commit 09d2c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/links/checkLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const checkLinks = async (
): Promise<EmbedBuilder | null> => {
const content = message.content;

// ignore link check in message from users who have the "team eddie" role
if (message.member?.roles.cache.some((role) => role.name === 'team eddie')) {
// ignore link check in message from users who have the "moderators" role
if (message.member?.roles.cache.some((role) => role.name === 'moderators')) {
return null;
}

Expand Down

0 comments on commit 09d2c6f

Please sign in to comment.