From b8362a0f01d83814356b0cd2ca3becff7e61ab34 Mon Sep 17 00:00:00 2001 From: CatAClock Date: Thu, 17 Jul 2025 09:12:37 -0700 Subject: [PATCH] two fixes --- src/HTTP/JS/MastodonAPI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HTTP/JS/MastodonAPI.js b/src/HTTP/JS/MastodonAPI.js index a08b725..1daa4be 100644 --- a/src/HTTP/JS/MastodonAPI.js +++ b/src/HTTP/JS/MastodonAPI.js @@ -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()); }