diff --git a/src/HTTP/JS/expanded.js b/src/HTTP/JS/expanded.js
index 6df7125..f5826b4 100644
--- a/src/HTTP/JS/expanded.js
+++ b/src/HTTP/JS/expanded.js
@@ -154,10 +154,10 @@ async function GetPost() {
SetBoost();
// Now time to see if there are any parents.
if (post.hasOwnProperty("reply")) {
- Parentpost = await BlueskyReplyFunction("Parent", post.reply.parent, post.reply.parent.author);
+ Parentpost = await BlueskyReplyFunction("0", post.reply.parent, post.reply.parent.author);
// Now time to see if there are any grandparents.
if (Parentpost.value.hasOwnProperty("reply")) {
- GrandParentpost = await BlueskyReplyFunction("GrandParent", Parentpost.value.reply.parent, post.reply.grandparentAuthor);
+ GrandParentpost = await BlueskyReplyFunction("1", Parentpost.value.reply.parent, post.reply.grandparentAuthor);
}
}
} else {
@@ -183,23 +183,23 @@ async function MastodonReplylFunction(Id, post) {
return OtherPost;
}
-// TODO
-async function BlueskyReplyFunction(ClassName, post, OtherAuthor) {
+async function BlueskyReplyFunction(Id, post, OtherAuthor) {
let OtherPost = await BlueskyAPI.GetRecord(post.uri.split("/")[2], post.uri.split("/")[3], post.uri.split("/")[4]);
- document.getElementsByClassName("Origin " + ClassName)[0].innerHTML = website;
- document.getElementsByClassName("Handle " + ClassName)[0].innerHTML = OtherAuthor.handle;
+ console.log(OtherPost);
+ let ShitHTML = " " + OtherAuthor.handle + "
" + website + "