[READ-ONLY] Mirror of https://github.com/maybeanerd/MagiBot. MagiBot - the community building discord bot that adds joinsounds to your voice channels! discord.gg/2Evcf4T
bot bots community discord gaming hacktoberfest sound
1

Configure Feed

Select the types of activity you want to include in your feed.

fix: use countDocuments instead of count

https://mongoosejs.com/docs/migrating_to_8.html#removed-count

Sebastian Di Luzio (Feb 22, 2024, 10:53 PM +0100) 201d71ee 978fa2ba

+1 -1
+1 -1
src/dbHelpers.ts
··· 145 145 const isStillMutedAmount = await StillMutedModel.find({ 146 146 userid: userID, 147 147 guildid: guildID, 148 - }).count(); 148 + }).countDocuments(); 149 149 if (isStillMutedAmount === 0) { 150 150 const newMute = new StillMutedModel({ 151 151 userid: userID,