mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
Fix Firefox issue with null values.
This commit is contained in:
parent
e1e9c9ebeb
commit
ac8309819c
@ -125,7 +125,10 @@ public class MindMapBean {
|
||||
}
|
||||
|
||||
public String getXmlAsJsLiteral() throws IOException {
|
||||
return this.mindmap.getXmlAsJsLiteral();
|
||||
final String result = this.mindmap.getXmlAsJsLiteral();
|
||||
|
||||
// Firefox is failing for this. Need to be reviewed ...
|
||||
return result.replace("\\u0000", "");
|
||||
}
|
||||
|
||||
public String getProperties() throws WiseMappingException {
|
||||
|
Loading…
Reference in New Issue
Block a user