From: Jacob Casper Date: Sun, 19 Apr 2020 04:51:16 +0000 (-0500) Subject: Fetch from official api X-Git-Url: https://git.jacobcasper.com/?p=brackets.git;a=commitdiff_plain;h=1520458efcf205d090070aab4f638d346eb977da Fetch from official api --- diff --git a/frontend/index.js b/frontend/index.js index e99deba..07d0d2d 100644 --- a/frontend/index.js +++ b/frontend/index.js @@ -156,7 +156,7 @@ window.onload = () => { const canvas = document.getElementById("bracket"); const formSubmitAction = () => { - fetch(encodeURI(`http://localhost:8080/artist/genre?genre_name=${genreInput.value}`)) + fetch(encodeURI(`http://api.brackets.jacobcasper.com/artist/genre?genre_name=${genreInput.value}`)) .then((response) => response.json()) .then((data) => drawBracket(canvas, data.slice(0, 33), genreInput.value)); } @@ -169,7 +169,7 @@ window.onload = () => { } let genres = JSON.parse(lStorage.getItem("genres")) if (genres === null) { - fetch("http://localhost:8080/genre") + fetch("http://api.brackets.jacobcasper.com/genre") .then((response) => response.text()) .then((text) => { window.localStorage.setItem("genres", text);