two fixes
This commit is contained in:
parent
2462400922
commit
b8362a0f01
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue