forked from Fascinated/Bat
fix user leaving guild npe
This commit is contained in:
@ -43,6 +43,11 @@ public class BatUser extends ProfileHolder {
|
||||
@Id
|
||||
private final String id;
|
||||
|
||||
/**
|
||||
* The global name of the user
|
||||
*/
|
||||
private String globalName;
|
||||
|
||||
/**
|
||||
* The time this user was created
|
||||
*/
|
||||
@ -53,13 +58,18 @@ public class BatUser extends ProfileHolder {
|
||||
this.document = document;
|
||||
boolean newAccount = this.document.isEmpty();
|
||||
this.createdAt = newAccount ? new Date() : document.getDate("createdAt");
|
||||
|
||||
User user = DiscordService.JDA.getUserById(id);
|
||||
if (user != null) {
|
||||
this.globalName = user.getGlobalName();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The name of the user
|
||||
*/
|
||||
public String getName() {
|
||||
return getDiscordUser().getEffectiveName();
|
||||
return this.getGlobalName();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user