fixed various instances of cdn not getting stuff

This commit is contained in:
MathMan05 2024-08-11 13:25:10 -05:00
parent 0571c0da71
commit 0fe2966ad1
6 changed files with 8 additions and 8 deletions

View file

@ -245,7 +245,7 @@ class Guild {
if (this.properties.icon != null) {
const img = document.createElement("img");
img.classList.add("pfp", "servericon");
img.src = this.info.cdn.toString() + "icons/" + this.properties.id + "/" + this.properties.icon + ".png";
img.src = this.info.cdn.toString() + "/icons/" + this.properties.id + "/" + this.properties.icon + ".png";
divy.appendChild(img);
img.onclick = () => {
console.log(this.loadGuild);