We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edf31be commit b837660Copy full SHA for b837660
1 file changed
src/main/java/material/user/BungieUser.java
@@ -133,11 +133,18 @@ public String getDisplayName() {
133
return displayName;
134
}
135
136
+ /**
137
+ * Returns the Global Display Name of the user across all Destiny Platforms
138
+ * Should be used instead of getDisplayName
139
+ */
140
public String getGlobalDisplayName() {
141
getJE();
142
143
if(globalDisplayName == null) {
144
145
+ // LinkedProfiles is not populated with bungieGlobalDisplayName as of 8/29/2021: github issue #1511
146
+ // As far as I know, getSupplementalDisplayName is also the bungieGlobalDisplayName
147
+ globalDisplayName = getSupplementalDisplayName().split("#")[0];
148
149
150
return globalDisplayName;
0 commit comments