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
Resolves #5793
  • Loading branch information
robwalch committed Sep 1, 2023
1 parent f27c436 commit d8682e3
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 d8682e3

Please sign in to comment.