forked from GitHub/dbot
remove process.nextTick
This commit is contained in:
parent
30a371d4d5
commit
bb3d846cad
@ -196,7 +196,6 @@ var users = function(dbot) {
|
||||
dbot.instance.addListener('366', 'users', function(event) {
|
||||
var checkChannel = function(channel) {
|
||||
async.eachSeries(_.keys(event.channel.nicks), function(nick, next) {
|
||||
process.nextTick(function() {
|
||||
var staff = event.channel.nicks[nick];
|
||||
|
||||
this.api.resolveUser(event.server, nick, function(user) {
|
||||
@ -214,7 +213,6 @@ var users = function(dbot) {
|
||||
this.internalAPI.createUser(event.server, nick, checkChannelUser);
|
||||
}
|
||||
}.bind(this));
|
||||
}.bind(this));
|
||||
}.bind(this), function(err) {
|
||||
console.log('finished checking ' + channel);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user