Enable reply/reactions on messages with no errors array
This commit is contained in:
parent
4d4c522c7f
commit
90fef354e4
1 changed files with 1 additions and 1 deletions
|
@ -1317,7 +1317,7 @@
|
|||
}
|
||||
|
||||
// Case 2: We can reply if there are no errors
|
||||
if (errors && errors.length === 0) {
|
||||
if (!errors || (errors && errors.length === 0)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue