Browse Source

Update VoovanTFB.java (#4469)

hely ho 6 years ago
parent
commit
d273ceb853
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/Java/voovan/src/main/java/org/voovan/VoovanTFB.java

+ 1 - 1
frameworks/Java/voovan/src/main/java/org/voovan/VoovanTFB.java

@@ -46,7 +46,7 @@ public class VoovanTFB {
 		webServer.get("/json", new HttpRouter() {
 			public void process(HttpRequest req, HttpResponse resp) throws Exception {
 				resp.header().put("Content-Type", "application/json");
-				resp.write(JSON.toJSON(MAP));
+				resp.write(JSON.toJSON(MAP, false, false));
 			}
 		});