We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4df7a3 commit 3583a45Copy full SHA for 3583a45
packages/video-filters-web/src/BaseVideoProcessor.ts
@@ -83,7 +83,7 @@ export abstract class BaseVideoProcessor {
83
.pipeThrough(transformStream, { signal: this.abortController.signal })
84
.pipeTo(writable, { signal: this.abortController.signal })
85
.catch((e) => {
86
- if (e.name !== 'AbortError') {
+ if (e.name !== 'AbortError' && e.name !== 'InvalidStateError') {
87
console.error(`[${this.processorName}] Error processing track:`, e);
88
this.hooks.onError?.(e);
89
}
0 commit comments