Skip to content

Commit 8c672d7

Browse files
authored
Merge pull request #722 from MaterArc/MaterArc-patch-1
Fix Aviate's API Call
2 parents 2d886b0 + 60780d5 commit 8c672d7

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)