diff options
Diffstat (limited to '_www/trunks.js')
| -rw-r--r-- | _www/trunks.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/_www/trunks.js b/_www/trunks.js index bae22fe..8866a31 100644 --- a/_www/trunks.js +++ b/_www/trunks.js @@ -247,7 +247,7 @@ export class Trunks { body: JSON.stringify(attackReq), }); const jsonRes = await httpRes.json(); - if (jsonRes.code != 200) { + if (jsonRes.code >= 400) { wuiNotif.error(jsonRes.message); return null; } @@ -265,7 +265,7 @@ export class Trunks { method: "DELETE", }); const jsonRes = await fres.json(); - if (jsonRes.code != 200) { + if (jsonRes.code >= 400) { wuiNotif.error(jsonRes.message); return null; } @@ -275,7 +275,7 @@ export class Trunks { const url = API_ATTACK_RESULT + "?name=" + name; const fres = await fetch(url); const res = await fres.json(); - if (res.code != 200) { + if (res.code >= 400) { wuiNotif.error(res.message); } return res; @@ -318,12 +318,12 @@ export class Trunks { body: JSON.stringify(req), }); const jsonRes = await httpRes.json(); - if (jsonRes.code != 200) { + if (jsonRes.code >= 400) { wuiNotif.error(jsonRes.message); return null; } const res = jsonRes.data; - if (res.ResponseStatusCode != 200) { + if (res.ResponseStatusCode >= 400) { wuiNotif.error(`${httpTarget.Name}: ${res.ResponseStatus}`); } else { @@ -354,7 +354,7 @@ export class Trunks { body: JSON.stringify(req), }); const jsonRes = await fres.json(); - if (jsonRes.code != 200) { + if (jsonRes.code >= 400) { wuiNotif.error(jsonRes.message); return null; } |
