Compare commits

..

No commits in common. "b65a445a15fdb8ca5f0ea47250e441d270677a0d" and "22b2286bf2771d676d9b21f1457a9210cac988fb" have entirely different histories.

1 changed files with 5 additions and 3 deletions

View File

@ -90,9 +90,11 @@ public class HttpUtil {
} }
public List<String[]> download(String version_name, int type) { public List<String[]> download(String version_name, int type) {
Map<String, Object> input = new HashMap<>(); Map<String, Object> input = new HashMap<>();
if (1306==type){
input.put("ver", version_name); input.put("infver", "V1.0");
}else {
input.put("ver", version_name);
}
String infno = String.valueOf(type); String infno = String.valueOf(type);
JSONObject result = null; JSONObject result = null;
try { try {