fix crash on invalid res
This commit is contained in:
parent
0046702a0b
commit
ae976a0caa
1 changed files with 2 additions and 1 deletions
3
app.js
3
app.js
|
@ -52,7 +52,8 @@ function handle_application_command(state, data, channel_id) {
|
||||||
|
|
||||||
default:
|
default:
|
||||||
console.error(`unknown command: ${name}`);
|
console.error(`unknown command: ${name}`);
|
||||||
return res.status(400).json({ error: "unknown command" });
|
if (res) return res.status(400).json({ error: "unknown command" });
|
||||||
|
else return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue