Compare commits

...

2 Commits

Author SHA1 Message Date
jaina heartles bef78535c9 saving work 2024-03-12 18:21:15 -07:00
jaina heartles 949907beb3 Fix indentation 2024-03-12 18:03:14 -07:00
1 changed files with 5 additions and 4 deletions

View File

@ -57,14 +57,15 @@ export class AutoDeleteNotesProcessorService {
const notes = await this.notesRepository.createQueryBuilder('note')
.where('note."userId" = :userId', { userId: user.user.id })
.andWhere('note.id < :untilId', { untilId })
.andWhere('note.id NOT IN (SELECT "noteId" FROM note_favorite WHERE "userId" = :userId)');
.getMany();
for (const note of notes) {
if (pinnedNoteIds.includes(note.id)) {
continue;
}
if (pinnedNoteIds.includes(note.id)) {
continue;
}
await this.noteDeleteService.delete(user, note);
await this.noteDeleteService.delete(user, note);
}
}