mirror of
https://github.com/immich-app/immich.git
synced 2024-12-24 10:37:28 +02:00
fix(server): album sorted incorrectly (#1901)
This commit is contained in:
parent
7411bcbb30
commit
5fd2496774
@ -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 New Issue
Block a user