same_recipient: Fix spacing

(imported from commit 75247bbbb496870236ab26f827daeb3fbe7bb7f3)
This commit is contained in:
Keegan McAllister
2012-11-01 14:11:21 -04:00
parent b56446513f
commit 080c169e90

View File

@@ -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