Skip to content

Commit

Permalink
Fix support of skip directive without block reload (Regressed in #5317)…
Browse files Browse the repository at this point in the history
… (#5791)

Resolves #5793
  • Loading branch information
robwalch committed Sep 1, 2023
1 parent 6227816 commit b96fd52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/base-playlist-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export default class BasePlaylistController implements NetworkComponentAPI {
this.loadPlaylist(deliveryDirectives);
return;
}
} else if (details.canBlockReload) {
} else if (details.canBlockReload || details.canSkipUntil) {
deliveryDirectives = this.getDeliveryDirectives(
details,
data.deliveryDirectives,
Expand Down

0 comments on commit b96fd52

Please sign in to comment.