Skip to content

Commit

Permalink
Fix type issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Jan 20, 2018
1 parent ff144d3 commit f68845e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ export default class Backburner {
let method = timers[i + 3];
let args = timers[i + 4];
let stack = this.DEBUG ? new Error() : undefined;
this.currentInstance.schedule(defaultQueue, target, method, args, false, stack);
this.currentInstance!.schedule(defaultQueue, target, method, args, false, stack);
} else {
break;
}
Expand Down

0 comments on commit f68845e

Please sign in to comment.