two fixes

This commit is contained in:
CatAClock 2025-07-17 09:12:37 -07:00
parent 2462400922
commit b8362a0f01

View file

@ -97,7 +97,7 @@ export async function GetAccountFollows(ID) {
if (Token == null || TokenType == null) {
return "";
}
return await fetch(localStorage.getItem(Variables.MastodonWebsite) + "/api/v1/accounts/" + ID + "/Following", {method: "GET", headers: {"Authorization": TokenType + " " + Token}})
return await fetch(localStorage.getItem(Variables.MastodonWebsite) + "/api/v1/accounts/" + ID + "/following", {method: "GET", headers: {"Authorization": TokenType + " " + Token}})
.then((response) => response.json());
}