EXT-X-CUE-IN ":" is not necessary (#181)

This commit is contained in:
Logan Song 2024-07-06 14:43:15 +08:00 committed by GitHub
commit 3f49bb4331
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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',