Fix issue with formatting :) (fixes quotes)

This commit is contained in:
Myles 2016-03-05 23:24:23 +00:00
parent f462ff9e8a
commit 0d0e1c16ea

View File

@ -656,10 +656,14 @@ public class OutgoingTransformer {
if (line == null || line.equalsIgnoreCase("null")) { if (line == null || line.equalsIgnoreCase("null")) {
line = "{\"text\":\"\"}"; line = "{\"text\":\"\"}";
} else { } else {
if (!line.startsWith("\"") && !line.startsWith("{")) if (!line.startsWith("\"") && !line.startsWith("{")) {
line = "\"" + line + "\""; JSONObject obj = new JSONObject();
if (line.startsWith("\"")) obj.put("text", line);
line = obj.toJSONString();
}
if (line.startsWith("\"")) {
line = "{\"text\":" + line + "}"; line = "{\"text\":" + line + "}";
}
} }
try { try {
new JSONParser().parse(line); new JSONParser().parse(line);