diff --git a/server/publications/notifications.js b/server/publications/notifications.js index bc6998a4c..556f5948d 100644 --- a/server/publications/notifications.js +++ b/server/publications/notifications.js @@ -130,7 +130,14 @@ Meteor.publish('notificationUsers', async function() { .filter(v => !!v), }, }, - {}, + { + fields: { + username: 1, + 'profile.fullname': 1, + 'profile.avatarUrl': 1, + 'profile.initials': 1, + }, + }, true, ); return ret;