Browse Source

fixup! Ref: Attachments to use modern gridfs (rm localstore)

David Arnold 4 years ago
parent
commit
3bfe5c284f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server/publications/notifications.js

+ 1 - 1
server/publications/notifications.js

@@ -12,7 +12,7 @@ Meteor.publish('notificationAttachments', function() {
       $in: activities()
         .map(v => v.attachmentId)
         .filter(v => !!v),
-    },
+    }.cursor,
   });
 });