diff --git a/Plugins/CreationDate/CreationDate.plugin.js b/Plugins/CreationDate/CreationDate.plugin.js index 78c12e9c11..f26a955ee5 100644 --- a/Plugins/CreationDate/CreationDate.plugin.js +++ b/Plugins/CreationDate/CreationDate.plugin.js @@ -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); diff --git a/Plugins/JoinedAtDate/JoinedAtDate.plugin.js b/Plugins/JoinedAtDate/JoinedAtDate.plugin.js index ae877cbd62..eb7bf52a49 100644 --- a/Plugins/JoinedAtDate/JoinedAtDate.plugin.js +++ b/Plugins/JoinedAtDate/JoinedAtDate.plugin.js @@ -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] = {};