diff --git a/src/HTTP/JS/expanded.js b/src/HTTP/JS/expanded.js index 87d68ff..969761f 100644 --- a/src/HTTP/JS/expanded.js +++ b/src/HTTP/JS/expanded.js @@ -176,7 +176,7 @@ async function GetPost() { // Because of repeat code, we can put it into it's own function. Hell, more of a thread can be added later. async function MastodonReplylFunction(Id, post) { let OtherPost = await MastodonAPI.GetStatus(post); - let ShitHTML = "

" + website + "

" + OtherPost.account.acct + "


"; + let ShitHTML = "

" + OtherPost.account.acct + "

" + website + "


"; document.getElementsByTagName("body")[0].innerHTML = ShitHTML + document.getElementsByTagName("body")[0].innerHTML; if (OtherPost.spoiler_text != "") { document.getElementsByClassName("PostText " + Id)[0].innerHTML = "WARNING: " + OtherPost.spoiler_text;