Revert "fix note ordering in antennas"

This reverts commit 39d76f7d662f66cf5d1a0396c43820ddc89362fc.
This commit is contained in:
Hazelnoot 2025-09-13 11:03:36 -04:00
parent 77a9979535
commit d118333f54

View file

@ -111,7 +111,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'),
ps.sinceId, ps.untilId)
.where('note.id IN (:...noteIds)', { noteIds: noteIds })
.orderBy('note.id', 'DESC')
.innerJoinAndSelect('note.user', 'user')
.leftJoinAndSelect('note.reply', 'reply')
.leftJoinAndSelect('note.renote', 'renote')