Remove redundant checks

This commit is contained in:
Gabriel Simmer 2022-07-07 18:27:57 +01:00
parent 9ce8d2eb0e
commit f4288d227c

View file

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