Add missing field to userData

This commit is contained in:
spjspj 2017-01-15 23:33:20 +11:00
parent 72e4df539b
commit b397e2849c
3 changed files with 17 additions and 3 deletions

View file

@ -783,6 +783,13 @@ public class User {
}
return number;
}
public String getEmail() {
if (authorizedUser != null) {
return authorizedUser.email;
}
return "";
}
private void updateAuthorizedUser() {
if (authorizedUser != null) {