fix mse abort error

This commit is contained in:
李璐 2024-10-14 16:49:54 +08:00
parent f6f8ffcd5f
commit 74ba211a40

View File

@ -558,7 +558,7 @@ export class MSE {
return Promise.resolve()
}
return this._enqueueOp(type, () => {
this._sourceBuffer[type].abort()
this._sourceBuffer[type]?.abort()
this._onSBUpdateEnd(type)
}, 'abort', context)
}