mirror of
https://github.com/Burn-E99/TheArtificer.git
synced 2026-01-06 12:27:53 -05:00
Patch to API Tools Website
Some code was out of order, fixed now.
This commit is contained in:
@ -122,10 +122,6 @@ function sendPayload() {
|
|||||||
var method;
|
var method;
|
||||||
var path = "/api/";
|
var path = "/api/";
|
||||||
|
|
||||||
if (endpoint !== "generate") {
|
|
||||||
xhr.setRequestHeader("X-Api-Key", apiField.value);
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (endpoint) {
|
switch (endpoint) {
|
||||||
case "generate":
|
case "generate":
|
||||||
method = "GET";
|
method = "GET";
|
||||||
@ -152,6 +148,11 @@ function sendPayload() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
xhr.open(method, path);
|
xhr.open(method, path);
|
||||||
|
|
||||||
|
if (endpoint !== "generate") {
|
||||||
|
xhr.setRequestHeader("X-Api-Key", apiField.value);
|
||||||
|
}
|
||||||
|
|
||||||
xhr.send();
|
xhr.send();
|
||||||
|
|
||||||
xhr.onload = function() {
|
xhr.onload = function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user