callback fix for [#233]

This commit is contained in:
reality 2013-01-27 14:49:22 +00:00
parent bd32a06276
commit bd75519047

View File

@ -15,13 +15,13 @@ var timers = function(dbot) {
if(firstDate) {
console.log('Setting first timer to run at ' + firstDate);
firstTimeout = firstDate.getTime() - now;
setTimeout(function(callback) {
setTimeout(function() {
console.log('Running first timer at ' + new Date().toUTCString());
this.runningIntervals.push(this.api.addTimer(timeout, callback));
callback();
}.bind(this), firstTimeout);
} else {
this.runningIntervals.push(setInterval(function(callback) {
this.runningIntervals.push(setInterval(function() {
console.log('Running subsequent timer at ' + new Date().toUTCString());
callback();
}.bind(this), timeout));