fix bio not showing up

This commit is contained in:
Mystikfluu 2022-07-09 16:13:47 +02:00
parent 3fa8db2971
commit bba3f2adc5

View File

@ -48,6 +48,6 @@ async function setuser() {
avatar = "/images/default_avatar.png"
}
document.getElementById("user").innerText = `User: ${username}`;
document.getElementById("userBio").placeholder = "Bio: " + decodeURIComponent(bio);
document.getElementById("userBio").innerText = "Bio: " + decodeURIComponent(bio);
document.getElementById("avatarimg").src = avatar;
}