[Utils > Backoff] Fix syntax error

This commit is contained in:
Ducko 2022-01-21 12:39:00 +00:00
parent c51e4c180e
commit 37877bd7fb
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ module.exports = class Backoff { // Internal library / utility for a class to re
try {
callback(); // Run callback
} finally {
this_timeoutId = null; // Stop tracking timeout internally as it's been executed
this._timeoutId = null; // Stop tracking timeout internally as it's been executed
}
}, this.current);