Fix type issue by setting the attribute separately

Co-authored-by: ws-gregm <55088361+ws-gregm@users.noreply.github.com>
This commit is contained in:
gfrancz 2025-02-04 13:55:16 -05:00 committed by Michael Lumish
parent 621f401e34
commit 588b69c12c
1 changed files with 2 additions and 1 deletions

View File

@ -684,7 +684,8 @@ class LrsCallState {
destroy() {
if (this.statsTimer) {
this.statsTimer = clearInterval(this.statsTimer);
clearInterval(this.statsTimer);
this.statsTimer = null;
}
return null;
}