forked from GitHub/dbot
fix #249
This commit is contained in:
parent
53ef0288f5
commit
c4a98c0df7
@ -15,7 +15,7 @@ var timers = function(dbot) {
|
|||||||
if(firstDate) {
|
if(firstDate) {
|
||||||
console.log('Setting first timer to run at ' + firstDate);
|
console.log('Setting first timer to run at ' + firstDate);
|
||||||
firstTimeout = firstDate.getTime() - now;
|
firstTimeout = firstDate.getTime() - now;
|
||||||
setTimeout(function() {
|
this.runningTimeouts.push(setTimeout(function() {
|
||||||
console.log('Running first timer at ' + new Date().toUTCString());
|
console.log('Running first timer at ' + new Date().toUTCString());
|
||||||
this.runningIntervals.push(this.api.addTimer(timeout, callback));
|
this.runningIntervals.push(this.api.addTimer(timeout, callback));
|
||||||
try {
|
try {
|
||||||
@ -23,7 +23,7 @@ var timers = function(dbot) {
|
|||||||
} catch(err) {
|
} catch(err) {
|
||||||
console.log('Callback failed: ' + err);
|
console.log('Callback failed: ' + err);
|
||||||
}
|
}
|
||||||
}.bind(this), firstTimeout);
|
}.bind(this), firstTimeout));
|
||||||
} else {
|
} else {
|
||||||
this.runningIntervals.push(setInterval(function() {
|
this.runningIntervals.push(setInterval(function() {
|
||||||
console.log('Running subsequent timer at ' + new Date().toUTCString());
|
console.log('Running subsequent timer at ' + new Date().toUTCString());
|
||||||
@ -39,9 +39,11 @@ var timers = function(dbot) {
|
|||||||
|
|
||||||
this.onDestroy = function() {
|
this.onDestroy = function() {
|
||||||
for(var i=0;i<this.runningTimeouts.length;i++) {
|
for(var i=0;i<this.runningTimeouts.length;i++) {
|
||||||
|
console.log('destroying ' +this.runningTimeouts[i]);
|
||||||
clearTimeout(this.runningTimeouts[i]);
|
clearTimeout(this.runningTimeouts[i]);
|
||||||
}
|
}
|
||||||
for(i=0;i<this.runningIntervals.length;i++) {
|
for(i=0;i<this.runningIntervals.length;i++) {
|
||||||
|
console.log('destroying ' +this.runningIntervals[i]);
|
||||||
clearInterval(this.runningIntervals[i]);
|
clearInterval(this.runningIntervals[i]);
|
||||||
}
|
}
|
||||||
}.bind(this);
|
}.bind(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user