Skip to content

Commit 60780d5

Browse files
authored
Fix Aviate's API Call
1 parent 2d886b0 commit 60780d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

features/aviate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ async function getTheUser() {
22
var user = window.location.href
33
.replace("https://scratch.mit.edu/users/", "")
44
.replaceAll("/", "");
5-
var response = await fetch("https://aviateapp.eu.org/api/" + user);
5+
var response = await fetch("https://aviate.scratchers.tech/api/" + user);
66
var data = await response.json();
77
if (data.success === true && data.status !== null) {
88
if (document.querySelector("i.aviate.scratchtools") === null) {

0 commit comments

Comments
 (0)