Skip to content

Commit cfa808e

Browse files
committed
Fixed eslint errors
1 parent 052881f commit cfa808e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/builders/audiodecoder.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,14 @@ function processWorker(workerArgs, callback) {
130130
this.close();
131131
});
132132
});
133+
133134
worker.addEventListener("message", function listener(evt) {
134135
callback(evt.data);
135136
// We're only sending a single message to each listener, so
136137
// remove the callback afterwards to avoid leaks.
137138
worker.removeEventListener("message", listener);
138139
});
140+
139141
worker.postMessage(workerArgs);
140142
}
141143

0 commit comments

Comments
 (0)