Commit c0250369 authored by nanahira's avatar nanahira

typo

parent 668a243a
...@@ -47,7 +47,7 @@ public class MyCardHelper { ...@@ -47,7 +47,7 @@ public class MyCardHelper {
public bool login(string name, string password, out string fail_reason) { public bool login(string name, string password, out string fail_reason) {
try { try {
LoginRequest data = new LoginRequest(); LoginRequest data = new LoginRequest();
data.account = username; data.account = name;
data.password = password; data.password = password;
string data_str = JsonUtility.ToJson(data); string data_str = JsonUtility.ToJson(data);
Dictionary<String, String> header_list = new Dictionary<String, String>(); Dictionary<String, String> header_list = new Dictionary<String, String>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment