some ufixes

This commit is contained in:
Luke Slater 2014-11-09 13:59:00 +00:00
parent bdbd5ee8e4
commit 27c150f877
3 changed files with 31 additions and 21 deletions

View File

@ -214,7 +214,10 @@ var commands = function(dbot) {
async.eachSeries(pCounts, function(pCount, next) {
dbot.api.users.getUser(pCount[0], function(err, user) {
pCount[0] = user.primaryNick; next();
if(user) {
pCount[0] = user.primaryNick;
}
next();
});
}, function() {
event.reply(this.internalAPI.formatHighscore('Top ' + word + ' users: ', pCounts));

View File

@ -48,7 +48,10 @@ var sstats = function(dbot) {
async.eachSeries(pCounts, function(pCount, next) {
dbot.api.users.getUser(pCount[0], function(err, user) {
pCount[0] = user.primaryNick; next();
if(user) {
pCount[0] = user.primaryNick;
}
next();
});
}, function() {
callback(pCounts);

View File

@ -76,25 +76,29 @@ var warning = function(dbot) {
server = event.server;
dbot.api.users.resolveUser(server, warnee, function(err, warnee) {
var warnings = 0;
this.db.search('warnings', {
'server': server,
'warnee': warnee.id
}, function(warning) {
warnings++;
}, function(err) {
if(warnings > 0) {
event.reply(dbot.t('warning_info', {
'user': warnee.primaryNick,
'num': warnings,
'url': dbot.api.web.getUrl('warning/' + server + '/'
+ warnee.primaryNick)
}));
} else {
event.reply(dbot.t('no_warnings', { 'user':
warnee.primaryNick }));
}
});
if(warnee) {
var warnings = 0;
this.db.search('warnings', {
'server': server,
'warnee': warnee.id
}, function(warning) {
warnings++;
}, function(err) {
if(warnings > 0) {
event.reply(dbot.t('warning_info', {
'user': warnee.primaryNick,
'num': warnings,
'url': dbot.api.web.getUrl('warning/' + server + '/'
+ warnee.primaryNick)
}));
} else {
event.reply(dbot.t('no_warnings', { 'user':
warnee.primaryNick }));
}
});
} else {
event.reply(event.params[1] + ' not found.');
}
}.bind(this));
}
};