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 be0fba2 commit 73f9551Copy full SHA for 73f9551
src/main/amp/web/js/softwareloop/inboxes/Item.js
@@ -80,7 +80,12 @@ define([
80
var valueNode = browser.getElementsByTagName(propertyString, "cmis", "value");
81
var cmisAttributeValue = null;
82
if (valueNode && valueNode.length > 0) {
83
- cmisAttributeValue = converter(valueNode[0].firstChild.nodeValue);
+ try {
84
+ var nodeValue = valueNode[0].firstChild.nodeValue;
85
+ cmisAttributeValue = converter(nodeValue);
86
+ } catch (e) {
87
+ cmisAttributeValue = null;
88
+ }
89
}
90
this.entryAttributes[cmisAttributeName] = cmisAttributeValue;
91
0 commit comments