mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 17:29:05 +01:00
Refactoring
This commit is contained in:
parent
8c52f28e39
commit
776d579065
@ -66,7 +66,7 @@ router.get('/notes/:note', async (ctx, next) => {
|
|||||||
|
|
||||||
const note = await Note.findOne({
|
const note = await Note.findOne({
|
||||||
_id: new mongo.ObjectID(ctx.params.note),
|
_id: new mongo.ObjectID(ctx.params.note),
|
||||||
$or: [ { visibility: 'public' }, { visibility: 'home' } ]
|
visibility: { $in: ['public', 'home'] }
|
||||||
});
|
});
|
||||||
|
|
||||||
if (note === null) {
|
if (note === null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user