hotfix: out should not be async

This commit is contained in:
Felix Roos 2022-09-16 00:30:37 +02:00
parent 6bab362171
commit a11d23ba62

View File

@ -147,9 +147,9 @@ function getWorklet(ac, processor, params) {
return node;
}
Pattern.prototype.out = async function () {
Pattern.prototype.out = function () {
try {
await loadWorklets();
loadWorklets();
} catch (err) {
console.warn('could not load AudioWorklet effects coarse, crush and shape', err);
}