fix crash
This commit is contained in:
parent
78c115a807
commit
0e8086b612
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) {
|
|||
return fomx(state);
|
||||
|
||||
case "factcheck":
|
||||
if (options.length >= 1) return factcheck(state, options[0].value);
|
||||
if (options && options.length >= 1)
|
||||
return factcheck(state, options[0].value);
|
||||
else return factcheck(state, True);
|
||||
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue