mirror of
https://github.com/reality/dbot.git
synced 2024-11-23 20:39:25 +01:00
whoopsies
This commit is contained in:
parent
3e8ba74459
commit
570239cccf
@ -30,9 +30,11 @@ var pages = function(dbot) {
|
||||
|
||||
async.eachSeries(userCount, function(userCount, next) {
|
||||
dbot.api.users.getUser(userCount.id, function(user) {
|
||||
userCount['name'] = user.primaryNick;
|
||||
users.push(userCount);
|
||||
next();
|
||||
if(user) {
|
||||
userCount['name'] = user.primaryNick;
|
||||
users.push(userCount);
|
||||
next();
|
||||
}
|
||||
});
|
||||
}, function() {
|
||||
res.render('channels', {
|
||||
@ -49,8 +51,6 @@ var pages = function(dbot) {
|
||||
user = req.user,
|
||||
notifies = this.pending[user.id];
|
||||
|
||||
async.eachSeries
|
||||
|
||||
res.render('missing_notifies', {
|
||||
'user': user.primaryNick,
|
||||
'notifies': _.sortBy(notifies, 'time')
|
||||
|
Loading…
Reference in New Issue
Block a user