Warn about account problems

This commit is contained in:
M66B
2018-11-19 14:14:02 +01:00
parent 9fac677c4a
commit 73df0e41b9
10 changed files with 1166 additions and 5 deletions

View File

@@ -62,6 +62,7 @@ public class EntityAccount {
public Long created;
public String state;
public String error;
public Long last_connected;
public JSONObject toJSON() throws JSONException {
JSONObject json = new JSONObject();
@@ -81,6 +82,7 @@ public class EntityAccount {
// not created
// not state
// not error
// not last connected
return json;
}