add user avatar info to getPosts

This commit is contained in:
Mystikfluu
2022-08-28 15:45:54 +02:00
parent 3dc6c37e49
commit 692af27078
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -135,7 +135,7 @@ async function reply_link_clicked(reply_channel,reply_id) {
}
}
async function createPost(username,text,time,specialtext,postid,isbot,reply_id,add_on_top) {
async function createPost(username,text,time,specialtext,postid,isbot,reply_id,add_on_top,avatar_src) {
if(!specialtext)specialtext=""
const newDiv = createElement("div");
const newP = createElement("p");
@@ -173,7 +173,7 @@ async function createPost(username,text,time,specialtext,postid,isbot,reply_id,a
avatar.height=25;
avatar.classList.add("avatar")
avatar.src = await getavatar(username)
avatar.src = avatar_src || await getavatar(username)
newA.appendChild(avatar)
newA.appendChild(newUsername)
@@ -265,7 +265,7 @@ async function main(){
highest_id = all_posts[0].post_id
for(i in all_posts) {
let item = all_posts[i]
await createPost(decodeURIComponent(item.post_user_name),decodeURIComponent(item.post_text),item.post_time,item.post_special_text,item.post_id,item.post_from_bot,item.post_reply_id,false)
await createPost(decodeURIComponent(item.post_user_name),decodeURIComponent(item.post_text),item.post_time,item.post_special_text,item.post_id,item.post_from_bot,item.post_reply_id,false,item.User_Avatar)
}
let links = document.getElementsByClassName("insertedlink")