Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Support Daterange Cue Attribute - Place tag at bottom at all times #51

Merged
merged 13 commits into from
Nov 27, 2024
Prev Previous commit
Next Next commit
fix if statement
  • Loading branch information
Nfrederiksen committed Nov 21, 2024
commit 9cf09fea86dd33e327df4988680095aaf5a742ca
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -479,7 +479,7 @@ class HLSSpliceVod {
}
}
let durationTag = "";
if (opts.plannedDuration) {
if (opts && opts.plannedDuration) {
durationTag = `,DURATION=${opts.plannedDuration / 1000}`;
}
if (isAssetList) {