From 1520458efcf205d090070aab4f638d346eb977da Mon Sep 17 00:00:00 2001 From: Jacob Casper Date: Sat, 18 Apr 2020 23:51:16 -0500 Subject: [PATCH] Fetch from official api --- frontend/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.20.1