diff --git a/src/server/activitypub.ts b/src/server/activitypub.ts index adbc6639fa..8da933a0f6 100644 --- a/src/server/activitypub.ts +++ b/src/server/activitypub.ts @@ -66,7 +66,7 @@ router.get('/notes/:note', async (ctx, next) => { const note = await Note.findOne({ _id: new mongo.ObjectID(ctx.params.note), - $or: [ { visibility: 'public' }, { visibility: 'home' } ] + visibility: { $in: ['public', 'home'] } }); if (note === null) {