Skip to content

Commit

Permalink
Merge branch 'patch/v1.5.x'
Browse files Browse the repository at this point in the history
* patch/v1.5.x:
  Fix index offset in sidx parsing (video-dev#6221)
  Fix issues with detached and destroyed level selection (video-dev#6216)
  • Loading branch information
robwalch committed Feb 17, 2024
2 parents e18d394 + 4cd4e1c commit 2943777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/stream-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export default class StreamController
}

const level = hls.nextLoadLevel;
if (!this.buffering || !levels?.[level]) {
if (!levels?.[level]) {
return;
}

Expand Down

0 comments on commit 2943777

Please sign in to comment.