Skip to content

Commit

Permalink
Do not apply interstitial buffering bounds to subtitle fragments
Browse files Browse the repository at this point in the history
Fixes #6768
  • Loading branch information
robwalch committed Dec 9, 2024
1 parent 0023dc1 commit de41b0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/controller/base-stream-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,8 @@ export default class BaseStreamController
if (
__USE_INTERSTITALS__ &&
config.interstitialsController &&
config.enableInterstitialPlayback !== false
config.enableInterstitialPlayback !== false &&
frag.type !== PlaylistLevelType.SUBTITLE
) {
// Do not load fragments outside the buffering schedule segment
const interstitials = this.hls.interstitialsManager;
Expand Down

0 comments on commit de41b0a

Please sign in to comment.