浏览代码

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

David Arnold 4 年之前
父节点
当前提交
3bfe5c284f
共有 1 个文件被更改,包括 1 次插入1 次删除
  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,
   });
 });