Update CleanRemoteNotesProcessorService.ts
This commit is contained in:
parent
ac77de0ba3
commit
cab1143d0e
|
@ -42,7 +42,9 @@ export class CleanRemoteNotesProcessorService {
|
||||||
const notes = await this.notesRepository.find({
|
const notes = await this.notesRepository.find({
|
||||||
where: {
|
where: {
|
||||||
userHost: Not(IsNull()),
|
userHost: Not(IsNull()),
|
||||||
// TODO: お気に入りされてないか、クリップに入ってないかなどの判定
|
clippedCount: 0,
|
||||||
|
renoteCount: 0,
|
||||||
|
// TODO: お気に入りされてないかなどの判定
|
||||||
...(cursor ? { id: MoreThan(cursor) } : {}),
|
...(cursor ? { id: MoreThan(cursor) } : {}),
|
||||||
},
|
},
|
||||||
take: 50,
|
take: 50,
|
||||||
|
|
Loading…
Reference in New Issue