Skip to content
Snippets Groups Projects
Commit 5ce55202 authored by Diego Sampaio's avatar Diego Sampaio
Browse files

Prevent javascript error on logout

parent f2d98ead
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ Template.messagePopupConfig.helpers
# Get online users
if items.length < 5 and filter?.trim() isnt ''
messageUsers = _.pluck(items, 'username')
Meteor.users.find({$and: [{username: exp}, {username: {$nin: [Meteor.user().username].concat(messageUsers)}}]}, {limit: 5 - messageUsers.length}).fetch().forEach (item) ->
Meteor.users.find({$and: [{username: exp}, {username: {$nin: [Meteor.user()?.username].concat(messageUsers)}}]}, {limit: 5 - messageUsers.length}).fetch().forEach (item) ->
items.push
_id: item.username
username: item.username
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment