This commit is contained in:
reality 2015-03-14 10:16:17 +00:00
parent 36372a511c
commit 46d5df86c2

View File

@ -303,12 +303,12 @@ var commands = function(dbot) {
var results = []; var results = [];
this.db.scan('notifies', function(notify) { this.db.scan('notifies', function(notify) {
if(notify && _.has(notify, 'host') && (notify.host == host || notify.message.split(' ')[0] == nick)) { if(notify && _.has(notify, 'host') && (notify.host == host || notify.message.split(' ')[0] == nick)) {
results.push(notify.message); results.push(notify);
} }
}, function() { }, function() {
event.reply(nick + ' has sought help ' + results.length + ' times under the host ' + host + ' or nick ' + nick); event.reply(nick + ' has sought help ' + results.length + ' times under the host ' + host + ' or nick ' + nick);
_.each(results, function(n) { _.each(results, function(n) {
event.reply(n); event.reply('[' + moment(parseInt(n.time)).format('DD/MM/YYYY') + '][' + n.user.split('.')[0] '] ' + n.message);
}); });
}); });
} else { } else {