mirror of
https://github.com/immich-app/immich.git
synced 2026-03-04 09:57:33 +03:00
fix(server): /places entries sometimes not ordered alphabetically (#10514)
This commit is contained in:
@@ -52,7 +52,7 @@ export class SearchRepository implements ISearchRepository {
|
||||
.innerJoinAndSelect('asset.exifInfo', 'exif')
|
||||
.withDeleted()
|
||||
.getQuery() +
|
||||
' INNER JOIN cte ON asset.id = cte."assetId"';
|
||||
' INNER JOIN cte ON asset.id = cte."assetId" ORDER BY exif.city';
|
||||
}
|
||||
|
||||
async init(modelName: string): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user