Fix: result record, ranking board bug

This commit is contained in:
2018-10-24 11:11:02 +09:00
parent c0e491677f
commit 8894b5a8e8
6 changed files with 50 additions and 37 deletions
+2 -2
View File
@@ -346,9 +346,9 @@ DBConnectManager.prototype.requestHowToPlay = function(appID, onSucceededListene
xhr.send("AppID=" + appID);
}
DBConnectManager.prototype.updateAppHighestRecord = function(maestroID, playerID, appID, record) {
DBConnectManager.prototype.updateResultRecord = function(maestroID, playerID, appID, record) {
var xhr = new XMLHttpRequest();
xhr.open("POST", this.phpPath + "server/record/update_app_highest_record.php", true);
xhr.open("POST", this.phpPath + "server/record/update_result_record.php", true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(
"MaestroID=" + maestroID