funny bug

This commit is contained in:
CatAClock 2025-06-04 16:21:46 -07:00
parent 82d42a3e6e
commit b95d08b4f3

View file

@ -85,7 +85,7 @@ async function GetPost() {
if (website == "Mastodon") { if (website == "Mastodon") {
// Check for a reblog. // Check for a reblog.
if (post.reblog != null) { if (post.reblog != null) {
document.getElementsByClassName("Handle Regular")[0].innerHTML = post.reblog + " ( R: " + post.account.username + " )"; document.getElementsByClassName("Handle Regular")[0].innerHTML = post.account.username + " ( R: " + post.reblog + " )";
} else { } else {
document.getElementsByClassName("Handle Regular")[0].innerHTML = post.account.username; document.getElementsByClassName("Handle Regular")[0].innerHTML = post.account.username;
} }