mirror of
https://github.com/fergalmoran/chrometophone.git
synced 2025-12-22 09:41:51 +00:00
Fix character encoding issue
This commit is contained in:
@@ -93,7 +93,7 @@ public class RequestInfo {
|
||||
}
|
||||
}
|
||||
|
||||
if ("application/json".equals(req.getContentType())) {
|
||||
if (req.getContentType().startsWith("application/json")) {
|
||||
Reader reader = req.getReader();
|
||||
// where is readFully ?
|
||||
char[] tmp = new char[2048];
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
-->
|
||||
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
|
||||
<application>chrometophone</application>
|
||||
<version>9</version>
|
||||
<version>10</version>
|
||||
<system-properties>
|
||||
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
|
||||
</system-properties>
|
||||
|
||||
Reference in New Issue
Block a user