Remove method parameter from getJson()

This commit is contained in:
ConfusedPolarBear 2022-07-18 00:38:38 -05:00
parent af2c43a8ae
commit 7c76954116

View File

@ -534,8 +534,8 @@
} }
// make an authenticated GET to the server and parse the response as JSON // make an authenticated GET to the server and parse the response as JSON
async function getJson(url, method = "GET") { async function getJson(url) {
return await fetchWithAuth(url, method).then(r => { return r.json(); }); return await fetchWithAuth(url, "GET").then(r => { return r.json(); });
} }
// make an authenticated fetch to the server // make an authenticated fetch to the server
@ -681,7 +681,7 @@
} }
// reset all intro timestamps on the server so a new fingerprint comparison algorithm can be tested // reset all intro timestamps on the server so a new fingerprint comparison algorithm can be tested
getJson("Intros/EraseTimestamps", "POST"); fetchWithAuth("Intros/EraseTimestamps", "POST", null);
}); });
e.preventDefault(); e.preventDefault();
@ -699,7 +699,7 @@
const season = selectSeason.value; const season = selectSeason.value;
const url = "Intros/Show/" + encodeURIComponent(show) + "/" + encodeURIComponent(season); const url = "Intros/Show/" + encodeURIComponent(show) + "/" + encodeURIComponent(season);
getJson(url, "DELETE"); fetchWithAuth(url, "DELETE", null);
Dashboard.alert("Erased timestamps for " + season + " of " + show); Dashboard.alert("Erased timestamps for " + season + " of " + show);
} }