mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-15 08:25:21 +01:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user