diff --git a/js/models/messages.js b/js/models/messages.js index 4b3500922c..7044e61ba7 100644 --- a/js/models/messages.js +++ b/js/models/messages.js @@ -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; }