diff --git a/src/HTTP/JS/expanded.js b/src/HTTP/JS/expanded.js
index 12fb682..5325dfb 100644
--- a/src/HTTP/JS/expanded.js
+++ b/src/HTTP/JS/expanded.js
@@ -194,7 +194,7 @@ async function MastodonReplylFunction(Id, post) {
async function BlueskyReplyFunction(Id, post) {
let OtherPost = await BlueskyAPI.GetPosts([post.uri]);
OtherPost = OtherPost.posts[0];
- let ShitHTML = " " + post.author.handle + "
" + website + "
";
+ let ShitHTML = " " + OtherPost.author.handle + "
" + website + "
";
document.getElementsByTagName("body")[0].insertAdjacentHTML("afterbegin", ShitHTML);
Text = BlueskyAPI.ApplyFacets(OtherPost.record, OtherPost.record.text);
Text = Text.replace(/\r?\n|\r/g, "
");
@@ -207,7 +207,7 @@ async function BlueskyReplyFunction(Id, post) {
} else {
document.getElementsByClassName("PostText " + Id)[0].innerHTML = Text;
if (OtherPost.record.hasOwnProperty("embed")) {
- ApplyMedia(OtherPost.record.embed, document.getElementsByClassName("Images " + Id)[0], post.author.did);
+ ApplyMedia(OtherPost.record.embed, document.getElementsByClassName("Images " + Id)[0], OtherPost.author.did);
}
}
// Get the reply and make it make sense.