Cleaned up dispatch iOS fixes (#396)

* Attempting to fix crashing on iOS devices

plus I forgot a thing in string.format

* Removed unnecessary things
This commit is contained in:
4Benj_
2022-05-01 14:31:39 +08:00
committed by GitHub
parent d0c6be5505
commit 0d262e2d07
4 changed files with 7 additions and 12 deletions

View File

@@ -74,7 +74,11 @@ public class Account {
}
public String getEmail() {
return email;
if(email != null && !email.isEmpty()) {
return email;
} else {
return "";
}
}
public void setEmail(String email) {