Skip to content

Commit 3583a45

Browse files
committed
feat(react): Extend the statistics report with audio stats
- fix issue with safari invalid canvas
1 parent c4df7a3 commit 3583a45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/video-filters-web/src/BaseVideoProcessor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export abstract class BaseVideoProcessor {
8383
.pipeThrough(transformStream, { signal: this.abortController.signal })
8484
.pipeTo(writable, { signal: this.abortController.signal })
8585
.catch((e) => {
86-
if (e.name !== 'AbortError') {
86+
if (e.name !== 'AbortError' && e.name !== 'InvalidStateError') {
8787
console.error(`[${this.processorName}] Error processing track:`, e);
8888
this.hooks.onError?.(e);
8989
}

0 commit comments

Comments
 (0)