From caa1cc7ef440e47092c187bb3fc4eec2fbddc5de Mon Sep 17 00:00:00 2001 From: CatAClock Date: Thu, 17 Jul 2025 11:25:09 -0700 Subject: [PATCH] oops --- src/HTTP/JS/account.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 + "

"; }