This commit is contained in:
syuilo 2021-03-22 12:41:38 +09:00
parent 51e3a9ccf0
commit 673a855340

View file

@ -164,7 +164,7 @@ export class UserRepository extends Repository<User> {
const pins = opts.detail ? await UserNotePinings.createQueryBuilder('pin')
.where('pin.userId = :userId', { userId: user.id })
.innerJoinAndSelect('pin.note', 'note')
.orderBy('id', 'DESC')
.orderBy('pin.id', 'DESC')
.getMany() : [];
const profile = opts.detail ? await UserProfiles.findOneOrFail(user.id) : null;