This commit is contained in:
CatAClock 2025-07-16 19:16:17 -07:00
parent 1ce3dea4c3
commit 4a07c41639

View file

@ -184,7 +184,7 @@ async function MastodonReplylFunction(Id, post) {
}
async function BlueskyReplyFunction(Id, post, OtherAuthor) {
let OtherPost = await BlueskyAPI.GetRecord(post.uri.split("/")[2], post.uri.split("/")[3], post.uri.split("/")[4]);
let OtherPost = await BlueskyAPI.GetPosts([post.uri]);
console.log(OtherPost);
let ShitHTML = "<header> <h1 class=\"Handle " + Id + "\"> " + OtherAuthor.handle + "</h1> <h2 class=\"Origin " + Id + "\"> " + website + "</h2> </header> <p class=\"PostText " + Id + "\"></p> <div class=\"Images " + Id + "\"></div> <hr/>";
document.getElementsByTagName("body")[0].insertAdjacentHTML("afterbegin", ShitHTML);