mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-05 11:05:53 +00:00
fix(server): album sorted incorrectly (#1901)
This commit is contained in:
parent
7411bcbb30
commit
5fd2496774
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ export class AlbumRepository implements IAlbumRepository {
|
|||
const queryProperties: FindManyOptions<AlbumEntity> = {
|
||||
relations: { sharedUsers: true, assets: true, sharedLinks: true, owner: true },
|
||||
select: { assets: { id: true } },
|
||||
order: { assets: { fileCreatedAt: 'ASC' }, createdAt: 'ASC' },
|
||||
order: { createdAt: 'DESC' },
|
||||
};
|
||||
|
||||
let albumsQuery: Promise<AlbumEntity[]>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue