Fix: client login.php

This commit is contained in:
2018-08-23 12:32:55 +09:00
parent 6fcb459550
commit 74525d79fb
2 changed files with 16 additions and 14 deletions
+2 -2
View File
@@ -119,8 +119,8 @@ class Login {
// show retry message
console.log('login failed, jsonData : ' + JSON.stringify(jsonData));
if(jsonData["ERROR"] !== null) {
self.infoText.text = jsonData["ERROR"];
if(jsonData["error"] !== null) {
self.infoText.text = jsonData["error"];
}
}