Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilbert142 committed Dec 2, 2018
1 parent 1754dd7 commit d66a94a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class GuildMemberUpdate extends BaseEvent {
async handle (oldMember, member) {
const serverDocument = await Servers.findOne(member.guild.id);
if (!serverDocument) {
return winston.error("Failed to find server data for GuildMemberUpdate", { svrid: guild.id, usrid: member.user.id });
return winston.error("Failed to find server data for GuildMemberUpdate", { svrid: member.guild.id, usrid: member.user.id });
}

if (serverDocument.config.moderation.isEnabled && serverDocument.config.moderation.status_messages.member_nick_updated_message.isEnabled) {
Expand Down

0 comments on commit d66a94a

Please sign in to comment.