From 18a7d70d51170e5c45283eb281d82b39081e805e Mon Sep 17 00:00:00 2001 From: CatAClock Date: Thu, 17 Jul 2025 09:12:53 -0700 Subject: [PATCH] AA --- src/HTTP/JS/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HTTP/JS/account.js b/src/HTTP/JS/account.js index 0910068..4446a46 100644 --- a/src/HTTP/JS/account.js +++ b/src/HTTP/JS/account.js @@ -154,7 +154,7 @@ async function GetAccount() { // Mastodon stuff. let MastoProfile = await MastodonAPI.GetOwnAccount(); // Get my followings on Mastodon. - let MyMastodonFollows = await MastodonAPI.GetAccountFollows(Mastodon.id); + let MyMastodonFollows = await MastodonAPI.GetAccountFollows(MastoProfile.id); for (let i of MyMastodonFollows) { document.getElementsByClassName("Posts")[0].innerHTML += MyMastodonFollows.acct + "

"; }