diff --git a/structure/moderation/ModerationManager.js b/structure/moderation/ModerationManager.js index bc2cd12..a81687e 100644 --- a/structure/moderation/ModerationManager.js +++ b/structure/moderation/ModerationManager.js @@ -356,23 +356,22 @@ class ModerationManager { target = guild.channels.resolve(i.target); } - if(!target) { - this.client.logger.debug(`User left the guild or channel was deleted? Unable to resolve target.\n${i}`); - return false; + if(target) { + const executor = guild.members.resolve(i.executor) || guild.me; + + await new undoClass(this.client, { + type: undoClass.type, + reason: `AUTO-${Constant.Opposites[i.type]} from Case ${i.case}`, + channel: guild.channels.resolve(i.channel), + hyperlink: i.modLogMessage && i.modLogChannel ? `https://discord.com/channels/${i.guild}/${i.modLogChannel}/${i.modLogMessage}` : null, + data: i.data, + guild, + target, + executor + }).execute(); + } else { + //Target left guild or channel was removed from the guild. What should happen in this situation? } - - const executor = guild.members.resolve(i.executor) || guild.me; - - await new undoClass(this.client, { - type: undoClass.type, - reason: `AUTO-${Constant.Opposites[i.type]} from Case ${i.case}`, - channel: guild.channels.resolve(i.channel), - hyperlink: i.modLogMessage && i.modLogChannel ? `https://discord.com/channels/${i.guild}/${i.modLogChannel}/${i.modLogMessage}` : null, - data: i.data, - guild, - target, - executor - }).execute(); //TODO: Log this, should never error... hopefully. await this.client.storageManager.mongodb.infractions.updateOne(