This commit is contained in:
parent
9e0d200b9b
commit
733fcc9b22
|
@ -187,7 +187,7 @@ class CreationDate {
|
|||
}
|
||||
|
||||
addCreationDate (info, container, popout) {
|
||||
if (!info || !container) return;
|
||||
if (!info || !container || container.querySelector(".creationDate")) return;
|
||||
let creationDate = $(this.creationDateMarkup);
|
||||
let choice = BDFDB.getData("creationDateLang", this, "choices");
|
||||
let nametag = container.querySelector(BDFDB.dotCN.nametag);
|
||||
|
|
|
@ -193,7 +193,7 @@ class JoinedAtDate {
|
|||
}
|
||||
|
||||
addJoinedAtDate (info, container, popout) {
|
||||
if (!info || !container) return;
|
||||
if (!info || !container || container.querySelector(".joinedAtDate")) return;
|
||||
let guildid = this.CurrentGuildStore.getGuildId();
|
||||
if (guildid) {
|
||||
if (!this.loadedusers[guildid]) this.loadedusers[guildid] = {};
|
||||
|
|
Loading…
Reference in New Issue