This commit is contained in:
Mirco Wittrien 2018-12-30 14:25:55 +01:00
parent 9e0d200b9b
commit 733fcc9b22
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ class CreationDate {
} }
addCreationDate (info, container, popout) { addCreationDate (info, container, popout) {
if (!info || !container) return; if (!info || !container || container.querySelector(".creationDate")) return;
let creationDate = $(this.creationDateMarkup); let creationDate = $(this.creationDateMarkup);
let choice = BDFDB.getData("creationDateLang", this, "choices"); let choice = BDFDB.getData("creationDateLang", this, "choices");
let nametag = container.querySelector(BDFDB.dotCN.nametag); let nametag = container.querySelector(BDFDB.dotCN.nametag);

View File

@ -193,7 +193,7 @@ class JoinedAtDate {
} }
addJoinedAtDate (info, container, popout) { addJoinedAtDate (info, container, popout) {
if (!info || !container) return; if (!info || !container || container.querySelector(".joinedAtDate")) return;
let guildid = this.CurrentGuildStore.getGuildId(); let guildid = this.CurrentGuildStore.getGuildId();
if (guildid) { if (guildid) {
if (!this.loadedusers[guildid]) this.loadedusers[guildid] = {}; if (!this.loadedusers[guildid]) this.loadedusers[guildid] = {};