Skip to content

Commit

Permalink
EXT-X-CUE-IN ":" is not necessary (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
wenpeng-song authored Jul 6, 2024
1 parent 990c6ce commit 3f49bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parse-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ export default class ParseStream extends Stream {
this.trigger('data', event);
return;
}
match = (/^#EXT-X-CUE-IN:(.*)?$/).exec(newLine);
match = (/^#EXT-X-CUE-IN:?(.*)?$/).exec(newLine);
if (match) {
event = {
type: 'tag',
Expand Down

0 comments on commit 3f49bb4

Please sign in to comment.