End action if an error is encountered

This commit is contained in:
Joel Male 2021-02-26 13:50:26 +10:00
parent 732ff79473
commit 528d756289

View File

@ -26,6 +26,7 @@ async function run() {
if (res.status >= 400) { if (res.status >= 400) {
// throw an error // throw an error
error(res.status); error(res.status);
return;
} }
// output the status // output the status
@ -37,6 +38,7 @@ async function run() {
}) })
.catch((err) => { .catch((err) => {
error(err.status); error(err.status);
return;
}); });
} }