fixed various instances of cdn not getting stuff
This commit is contained in:
parent
0571c0da71
commit
0fe2966ad1
6 changed files with 8 additions and 8 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue