Fix commFunc typo in the SandboxSupportBase.destroy method

This commit is contained in:
nmtigor 2022-09-20 11:39:13 +02:00
parent e5fc7cf4bd
commit d7103a4439

View File

@ -29,7 +29,7 @@ class SandboxSupportBase {
} }
destroy() { destroy() {
this.commFunc = null; this.commFun = null;
this.timeoutIds.forEach(([_, id]) => this.win.clearTimeout(id)); this.timeoutIds.forEach(([_, id]) => this.win.clearTimeout(id));
this.timeoutIds = null; this.timeoutIds = null;
} }