Fix bug in speaker
This commit is contained in:
parent
fbb9bea3c0
commit
649286dcdf
1 changed files with 4 additions and 2 deletions
|
@ -19,9 +19,11 @@ class Speaker {
|
|||
} else {
|
||||
if (!this.#scheduled.length) {
|
||||
queueMicrotask(() => {
|
||||
for (let args of this.#scheduled) {
|
||||
for (let callback of this.#callbacks) {
|
||||
callback(...args)
|
||||
}
|
||||
}
|
||||
this.#scheduled = []
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue