Catching instances of null returned from backend

This commit is contained in:
Gabriel Simmer 2022-07-07 18:09:12 +01:00
parent 972ada9ec3
commit 359acbf385

View file

@ -18,14 +18,20 @@
}
const r2 = await fetch(`/api/v1/server/${id}/invites`);
if (request.ok) {
if (r2.ok) {
const a = await r2.body();
if (a != "null") {
invites = await r2.json();
}
for (let invite in invites) {
const logsReq = await fetch(`/api/v1/invite/${invites[invite].token}/log`)
if (request.ok) {
if (logsReq.ok) {
const b = await logsReq.body();
if (b != "null") {
invites[invite]["log"] = await logsReq.json()
}
}
}
} else {
console.log('not ok');
}