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; }); },