Skip to content

Commit

Permalink
Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Sep 4, 2024
1 parent 5e345d3 commit af24f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/experimental/tools/DummyMediaElement/mse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export class DummySourceBuffer
this._lastKeyId = keyId;

const completeChunks: Uint8Array[] =
otherChunks === null ? [] : extractCompleteChunks(otherChunks)[0] ?? [];
otherChunks === null ? [] : (extractCompleteChunks(otherChunks)[0] ?? []);
const chunks: Uint8Array[] =
initSegment === null ? completeChunks : [initSegment, ...completeChunks];

Expand Down

0 comments on commit af24f41

Please sign in to comment.