Skip to content

Commit

Permalink
Fix ProducerReferenceTime id attribute value parsing (#4613)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbert authored Nov 6, 2024
1 parent d8be47c commit 8f35d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dash/models/DashManifestModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function DashManifestModel() {
const entry = new ProducerReferenceTime();

if (prt.hasOwnProperty(DashConstants.ID)) {
entry[DashConstants.ID] = prt[DashConstants.ID];
entry[DashConstants.ID] = parseInt(prt[DashConstants.ID]);
} else {
// Ignore. Missing mandatory attribute
return;
Expand Down

0 comments on commit 8f35d6b

Please sign in to comment.