Browse Source

Add async for querying mongoDB

master
Abheek Dhawan 4 years ago
parent
commit
f9bbef37e3
  1. 4
      bot.js

4
bot.js

@ -115,7 +115,7 @@ async function aboutBot(message) {
} }
async function memberCountChannelUpdate(member) { async function memberCountChannelUpdate(member) {
collection.findOne({ guild_id: member.guild.id }, (error, result) => { collection.findOne({ guild_id: member.guild.id }, async (error, result) => {
if (error) { if (error) {
console.error; console.error;
} }
@ -256,7 +256,7 @@ async function memberCountChannelCreate(message) {
message.reply("you do not have admin permissions!"); message.reply("you do not have admin permissions!");
return; return;
} }
collection.findOne({ guild_id: message.guild.id }, (error, result) => { collection.findOne({ guild_id: message.guild.id }, async (error, result) => {
if (error) { if (error) {
console.error; console.error;
} }

Loading…
Cancel
Save