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