我正在尝试捕捉// this line
,但我似乎无法找到在哪里放置捕捉以正确捕捉它。
mutedList.forEach((i) => {
if (i.mutedEnd*1000 < new Date()){
console.log(i)
db.collection('muted').doc(i.userID).get().then((q) => {
db.collection('muted').doc(i.userID).update({
stillMuted: false
}).then(
bot.guilds.get(i.guildID).members.get(i.userID).removeRole(i.mutedRole) // this line | here
).catch((err) => {
bot.createMessage('717822384198910042',{ embed: {
title: 'ERROR',
description: '```js\n'+err.stack+'\n```',
color: hex
}});
})}
)}
})
我已经尝试过它目前在哪里,我在哪里放了一个HERE