This commit is contained in:
CatAClock 2025-07-17 09:12:53 -07:00
parent b8362a0f01
commit 18a7d70d51

View file

@ -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 + "<br/><br/>";
}