Skip to content

Commit

Permalink
disable verification queue
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrey-zang committed Jul 26, 2024
1 parent cab02c1 commit 04d991f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ client.on('ready', async () => {

console.log(`Logged in as ${client.user.tag}!`);

verificationQueueProcessor.startProcessing(client);
// verificationQueueProcessor.startProcessing(client);
})

client.on('voiceStateUpdate', (oldMember, newMember) => {
Expand Down Expand Up @@ -79,7 +79,7 @@ client.on('guildMemberAdd', async (member) => {
try {
userInfo = await UserController.getUserByDiscordID(member.id)
} catch (e) {
console.log(e);
console.log(member.user.tag + " user not found");
}

if (userInfo) {
Expand All @@ -92,7 +92,7 @@ client.on('guildMemberAdd', async (member) => {
}
} else {
try {
console.log(`Discord user ${member.id} not linked`);
console.log(`${member.user.tag} user not linked`);
} catch (e) {
console.log(e);
}
Expand Down

0 comments on commit 04d991f

Please sign in to comment.