From 414cac49c3ee4a6d81211b33ee13926b06e7c200 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 15 Feb 2019 06:31:22 +0900 Subject: [PATCH] Improve featured api --- src/server/api/endpoints/notes/featured.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/server/api/endpoints/notes/featured.ts b/src/server/api/endpoints/notes/featured.ts index 371d82212..5d3404f1d 100644 --- a/src/server/api/endpoints/notes/featured.ts +++ b/src/server/api/endpoints/notes/featured.ts @@ -23,7 +23,7 @@ export const meta = { }; export default define(meta, (ps, user) => new Promise(async (res, rej) => { - const day = 1000 * 60 * 60 * 24; + const day = 1000 * 60 * 60 * 24 * 2; const notes = await Note .find({ @@ -31,7 +31,8 @@ export default define(meta, (ps, user) => new Promise(async (res, rej) => { $gt: new Date(Date.now() - day) }, deletedAt: null, - visibility: { $in: ['public', 'home'] } + visibility: { $in: ['public', 'home'] }, + '_user.host': null }, { limit: ps.limit, sort: {