3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00

raise acceptable response time for getUserInfo to 8 seconds

This commit is contained in:
reality 2013-06-10 16:20:47 +00:00
parent 3be45d4692
commit 5f86eb225f

View File

@ -20,7 +20,7 @@ var nickserv = function(dbot) {
dbot.instance.connections[server].send('USERHOST ' + nick);
setTimeout(function() {
if(_.has(this.userStack[server], nick)) callback(false);
}.bind(this), 3000);
}.bind(this), 8000);
}
};