you know what

un-base64's your website
This commit is contained in:
Mystikfluu
2022-06-04 13:17:35 +02:00
parent ce379e944e
commit 92d62685fc
3 changed files with 15 additions and 17 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ async function main(){
if(!last_10_posts)return;
document.getElementById("posts").innerHTML = ""
last_10_posts.forEach((item, i) => {
createPost(decodeURIComponent(atob(item.post_user_name)),decodeURIComponent(atob(item.post_text)),item.post_time,item.post_special_text,item.post_id)
createPost(decodeURIComponent(item.post_user_name),decodeURIComponent(item.post_text),item.post_time,item.post_special_text,item.post_id)
});
let links = document.getElementsByClassName("insertedlink")