diff --git a/zephyr/static/js/narrow.js b/zephyr/static/js/narrow.js index 0942628f72..57c6a44ed5 100644 --- a/zephyr/static/js/narrow.js +++ b/zephyr/static/js/narrow.js @@ -229,7 +229,7 @@ function build_filter(operators_mixed_case) { case 'pm-with': if ((message.type !== 'private') || - (message.reply_to.toLowerCase() !== operand)) + message.reply_to.toLowerCase() !== operand.split(',').sort().join(',')) return false; break;