fix user leaving guild npe

This commit is contained in:
Lee
2024-07-01 19:40:32 +01:00
parent a6e490dbe5
commit 20c5f71cd4
4 changed files with 28 additions and 5 deletions

View File

@ -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();
}
/**