From 77fb5b4a7126b6d2ceb570b76f6bf054dd10d694 Mon Sep 17 00:00:00 2001 From: sachaaaaa Date: Thu, 7 Mar 2019 11:33:13 +1100 Subject: [PATCH] Missing closing parenthesis --- js/models/conversations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index 9b39f31c6..f12b7a0a9 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -390,7 +390,7 @@ // Get the pending friend requests that match the direction // If no direction is supplied then return all pending friend requests return messages.models.filter(m => { - if (!status.includes(m.get('friendStatus')) return false; + if (!status.includes(m.get('friendStatus'))) return false; return direction === null || m.get('direction') === direction; }); },