diff --git a/zephyr/static/js/zephyr.js b/zephyr/static/js/zephyr.js index 988c72df58..cc2a4f9dda 100644 --- a/zephyr/static/js/zephyr.js +++ b/zephyr/static/js/zephyr.js @@ -212,7 +212,7 @@ function same_recipient(a, b) { return a.reply_to === b.reply_to; case 'stream': return (a.recipient_id === b.recipient_id) && - (a.subject === b.subject); + (a.subject === b.subject); } // should never get here