- Fix IE 9 issue that true value is serialized as number instead of boolean string.
This commit is contained in:
@@ -72,7 +72,7 @@ public class FreemindExporter
|
||||
TopicType centerTopic = null;
|
||||
if (topics.size() > 1) {
|
||||
for (TopicType topic : topics) {
|
||||
if (topic.isCentral()) {
|
||||
if (topic.isCentral() != null && topic.isCentral()) {
|
||||
centerTopic = topic;
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user