Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.2
-
None
-
none
Description
this is a two part problem:
1) pushpull depends on an older version of nekohtml (which depends on an older version of xercesImpl)
- patch will update nekohtml to version: 1.9.6.2
2) Node node . . . ; node.getNodeValue() should be node.getChildNodes().item(0).getNodeValue() . . . instead of node.getTextContext().
- apparently text inside of a Node object isn't its value . . . the text value desired is stored in the a child node at index 0 whose value is the value desired