3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-26 12:42:51 +01:00

should fix channel ignores

This commit is contained in:
reality 2013-12-24 00:29:00 +00:00
parent fe0cbf048b
commit aaa924d9d8

View File

@ -209,7 +209,7 @@ var ignore = function(dbot) {
if(!_.include(channel.ignores, module)) { if(!_.include(channel.ignores, module)) {
channel.ignores.push(module); channel.ignores.push(module);
this.db.save('channel_ignores', channel.id, channel, function(err) { this.db.save('channel_ignores', channel.id, channel, function(err) {
dbot.instance.ignoreTag(channel, module); dbot.instance.ignoreTag(channel.name, module);
event.reply(dbot.t('ignoring_channel', { event.reply(dbot.t('ignoring_channel', {
'module': module, 'module': module,
'channel': channelName 'channel': channelName
@ -241,7 +241,7 @@ var ignore = function(dbot) {
if(channel && _.include(channel.ignores, module)) { if(channel && _.include(channel.ignores, module)) {
channel.ignores = _.without(channel.ignores, module); channel.ignores = _.without(channel.ignores, module);
this.db.save('channel_ignores', channel.id, channel, function(err) { this.db.save('channel_ignores', channel.id, channel, function(err) {
dbot.instance.removeIgnore(channel, module); dbot.instance.removeIgnore(channel.name, module);
event.reply(dbot.t('unignoring_channel', { event.reply(dbot.t('unignoring_channel', {
'module': module, 'module': module,
'channel': channelName 'channel': channelName
@ -284,7 +284,7 @@ var ignore = function(dbot) {
this.db.scan('channel_ignores', function(channel) { this.db.scan('channel_ignores', function(channel) {
_.each(channel.ignores, function(module) { _.each(channel.ignores, function(module) {
dbot.instance.ignoreTag(channel, module); dbot.instance.ignoreTag(channel.name, module);
}); });
}, function(err) { }); }, function(err) { });
}; };