close audio context when disposing

This commit is contained in:
Marcel Blum 2022-02-22 17:22:50 -05:00
parent b91b34d792
commit 77e89734c2

View file

@ -536,6 +536,7 @@ export class Context extends BaseContext {
Object.keys(this._constants).map((val) =>
this._constants[val].disconnect()
);
this.close();
return this;
}