1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-11-25 15:46:17 +09:00
This commit is contained in:
syuilo 2020-02-20 13:38:40 +09:00
parent 2504b8391b
commit e59e2d9f0b

View File

@ -26,6 +26,8 @@ export async function injectFeatured(timeline: Note[], user?: User | null) {
.andWhere(`note.visibility = 'public'`)
.leftJoinAndSelect('note.user', 'user');
if (user) query.andWhere('note.userId != :userId', { userId: user.id });
if (user) generateMuteQuery(query, user);
const notes = await query