mirror of
https://github.com/videojs/m3u8-parser.git
synced 2026-06-06 08:22:33 +00:00
EXT-X-CUE-IN ":" is not necessary (#181)
This commit is contained in:
parent
990c6ced71
commit
3f49bb4331
1 changed files with 1 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue