diff --git a/src/HTTP/JS/account.js b/src/HTTP/JS/account.js
index 4446a46..1e92f9c 100644
--- a/src/HTTP/JS/account.js
+++ b/src/HTTP/JS/account.js
@@ -155,8 +155,9 @@ async function GetAccount() {
let MastoProfile = await MastodonAPI.GetOwnAccount();
// Get my followings on Mastodon.
let MyMastodonFollows = await MastodonAPI.GetAccountFollows(MastoProfile.id);
+ document.getElementsByClassName("Posts")[0].innerHTML += "FOLLOWS:
";
for (let i of MyMastodonFollows) {
- document.getElementsByClassName("Posts")[0].innerHTML += MyMastodonFollows.acct + "
";
+ document.getElementsByClassName("Posts")[0].innerHTML += i.acct + "
";
}
// Bluesky stuff.
let BlueProfile = await BlueskyAPI.GetProfile(localStorage.getItem(Variables.BlueskyDID));
@@ -167,6 +168,7 @@ async function GetAccount() {
AlternateAccountImage.setAttribute("src", BlueProfile.avatar);
// Get my followings on Bsky
let MyBlueskyFollows = await BlueskyAPI.GetFollows(localStorage.getItem(Variables.BlueskyDID));
+ AccountPosts.innerHTML += "FOLLOWS:
";
for (let i of MyBlueskyFollows.follows) {
AccountPosts.innerHTML += i.handle + "
";
}