We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba70132 commit 2e10451Copy full SHA for 2e10451
src/node/heart.ts
@@ -33,7 +33,7 @@ export class Heart {
33
if (typeof this.heartbeatTimer !== "undefined") {
34
clearTimeout(this.heartbeatTimer)
35
}
36
- this.heartbeatTimer = setTimeout(async () => await heartbeatTimer(this.isActive, this.beat), this.heartbeatInterval)
+ this.heartbeatTimer = setTimeout(() => heartbeatTimer(this.isActive, this.beat), this.heartbeatInterval)
37
38
39
/**
0 commit comments