Skip to content

Commit

Permalink
fix(HLS): Report HLS playlist updates as media playlist in network fi…
Browse files Browse the repository at this point in the history
…lters
  • Loading branch information
avelad committed Mar 24, 2023
1 parent 2b33315 commit d097f56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/hls/hls_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,8 @@ shaka.hls.HlsParser = class {
// 'EXT-X-SKIP' tag in the media playlist.
uriObj.setQueryData(new goog.Uri.QueryData('_HLS_skip=YES'));
}
const response = await this.requestManifest_(uriObj.toString());
const response =
await this.requestManifest_(uriObj.toString(), /* isPlaylist= */ true);
if (!streamInfo.stream.segmentIndex) {
// The stream was closed since the update was first requested.
return;
Expand Down

0 comments on commit d097f56

Please sign in to comment.