3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

fix ignore

This commit is contained in:
reality 2017-07-18 02:52:59 +00:00
parent 0d2d00635c
commit e22133d685

View File

@ -116,7 +116,6 @@ var ignore = function(dbot) {
if(module == '*' || _.include(dbot.config.moduleNames, item) || _.include(dbot.commands, item)) {
dbot.api.users.resolveUser(event.server, nick, function(err, user) {
this.api.getUserIgnores(user, function(err, ignores) {
if(!err) {
if(!ignores) {
ignores = {
'id': user.id,
@ -142,9 +141,6 @@ var ignore = function(dbot) {
'banned': nick
}));
}
} else {
event.reply(err);
}
}.bind(this));
}.bind(this));
} else {
@ -264,8 +260,8 @@ var ignore = function(dbot) {
commands['~ignorechannel'].regex = [/^ignorechannel ([^ ]+) ([^ ]+)$/, 3];
commands['~unignorechannel'].regex = [/^unignorechannel ([^ ]+) ([^ ]+)$/, 3];
commands['~ban'].access = 'moderator';
commands['~unban'].access = 'moderator';
commands['~ban'].access = 'power_user';
commands['~unban'].access = 'power_user';
commands['~ignorechannel'].access = 'moderator';
commands['~unignorechannel'].access = 'moderator';