fix: Filter featured collection (MisskeyIO#277)

Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com>
This commit is contained in:
riku6460 2023-12-06 02:14:31 +09:00 committed by GitHub
parent 3097bce214
commit 7f7df366b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -77,7 +77,7 @@ export class NotePiningService {
} as MiUserNotePining); } as MiUserNotePining);
// Deliver to remote followers // Deliver to remote followers
if (this.userEntityService.isLocalUser(user)) { if (this.userEntityService.isLocalUser(user) && !note.localOnly && ['public', 'home'].includes(note.visibility)) {
this.deliverPinnedChange(user.id, note.id, true); this.deliverPinnedChange(user.id, note.id, true);
} }
} }
@ -105,7 +105,7 @@ export class NotePiningService {
}); });
// Deliver to remote followers // Deliver to remote followers
if (this.userEntityService.isLocalUser(user)) { if (this.userEntityService.isLocalUser(user) && !note.localOnly && ['public', 'home'].includes(note.visibility)) {
this.deliverPinnedChange(user.id, noteId, false); this.deliverPinnedChange(user.id, noteId, false);
} }
} }

View File

@ -370,8 +370,9 @@ export class ActivityPubServerService {
order: { id: 'DESC' }, order: { id: 'DESC' },
}); });
const pinnedNotes = await Promise.all(pinings.map(pining => const pinnedNotes = (await Promise.all(pinings.map(pining =>
this.notesRepository.findOneByOrFail({ id: pining.noteId }))); this.notesRepository.findOneByOrFail({ id: pining.noteId }))))
.filter(note => !note.localOnly && ['public', 'home'].includes(note.visibility));
const renderedNotes = await Promise.all(pinnedNotes.map(note => this.apRendererService.renderNote(note))); const renderedNotes = await Promise.all(pinnedNotes.map(note => this.apRendererService.renderNote(note)));