This commit is contained in:
none
2022-05-31 10:03:13 +02:00
parent 36fd7ff7ff
commit 73ffb69917
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@
if(user["error"])bio=user["error"];
if(!bio)bio="wow such empty"
document.getElementById("user").innerText = `User: ${username}`;
document.getElementById("bio").placeholder = atob(bio);
document.getElementById("bio").placeholder = decodeURIComponent(atob(bio));
}