Skip to content

Commit 8f35d6b

Browse files
authored
Fix ProducerReferenceTime id attribute value parsing (Dash-Industry-Forum#4613)
1 parent d8be47c commit 8f35d6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dash/models/DashManifestModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ function DashManifestModel() {
189189
const entry = new ProducerReferenceTime();
190190

191191
if (prt.hasOwnProperty(DashConstants.ID)) {
192-
entry[DashConstants.ID] = prt[DashConstants.ID];
192+
entry[DashConstants.ID] = parseInt(prt[DashConstants.ID]);
193193
} else {
194194
// Ignore. Missing mandatory attribute
195195
return;

0 commit comments

Comments
 (0)