Missing closing parenthesis

pull/248/head
sachaaaaa 6 years ago
parent 353302ca16
commit 77fb5b4a71

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

Loading…
Cancel
Save