mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-05 11:56:29 +08:00
- FIX NPE loading old maps ...
This commit is contained in:
parent
042ea9ae6e
commit
36c34b6962
@ -372,7 +372,16 @@ mindplot.persistence.XMLSerializer_Pela = new Class({
|
||||
value = child.nodeValue;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Notes must be decoded ...
|
||||
value = unescape(value);
|
||||
|
||||
// Hack for empty nodes ...
|
||||
if (value == "") {
|
||||
value = " ";
|
||||
}
|
||||
}
|
||||
|
||||
return value;
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user