We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b7135d commit 982a93dCopy full SHA for 982a93d
src/dash/models/DashManifestModel.js
@@ -1317,9 +1317,9 @@ function DashManifestModel() {
1317
event.id = null;
1318
}
1319
1320
- if (currentMpdEvent.Signal && currentMpdEvent.Signal.Binary) {
+ if (currentMpdEvent.Signal && currentMpdEvent.Signal.Binary && currentMpdEvent.Signal.Binary.__text) {
1321
// toString is used to manage both regular and namespaced tags
1322
- event.messageData = BASE64.decodeArray(currentMpdEvent.Signal.Binary.toString());
+ event.messageData = BASE64.decodeArray(currentMpdEvent.Signal.Binary.__text.toString());
1323
} else {
1324
// From Cor.1: 'NOTE: this attribute is an alternative
1325
// to specifying a complete XML element(s) in the Event.
0 commit comments