Update CleanRemoteNotesProcessorService.ts

This commit is contained in:
syuilo 2025-07-17 09:43:40 +09:00
parent ac77de0ba3
commit cab1143d0e
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@ export class CleanRemoteNotesProcessorService {
const notes = await this.notesRepository.find({
where: {
userHost: Not(IsNull()),
// TODO: お気に入りされてないか、クリップに入ってないかなどの判定
clippedCount: 0,
renoteCount: 0,
// TODO: お気に入りされてないかなどの判定
...(cursor ? { id: MoreThan(cursor) } : {}),
},
take: 50,