From 90fef354e48b72721cedcdeecc0cd081345135e5 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 28 Feb 2020 16:26:50 -0800 Subject: [PATCH] Enable reply/reactions on messages with no errors array --- js/models/messages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/messages.js b/js/models/messages.js index 4b3500922..7044e61ba 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; }