linting, fix expected response

This commit is contained in:
mertalev 2025-05-05 10:03:20 -04:00
parent 3ace02b3e7
commit 21bbf2f5e2
No known key found for this signature in database
GPG Key ID: DF6ABC77AAD98C95
2 changed files with 32 additions and 39 deletions

View File

@ -149,24 +149,21 @@ describe('/timeline', () => {
expect(status).toBe(200);
expect(body).toEqual({
bucketAssets: {
city: [],
country: [],
duration: [],
id: [],
isArchived: [],
isFavorite: [],
isImage: [],
isTrashed: [],
livePhotoVideoId: [],
localDateTime: [],
ownerId: [],
projectionType: [],
ratio: [],
status: [],
thumbhash: [],
},
hasNextPage: false,
city: [],
country: [],
duration: [],
id: [],
isArchived: [],
isFavorite: [],
isImage: [],
isTrashed: [],
livePhotoVideoId: [],
localDateTime: [],
ownerId: [],
projectionType: [],
ratio: [],
status: [],
thumbhash: [],
});
});
@ -189,25 +186,21 @@ describe('/timeline', () => {
expect(status).toBe(200);
expect(body).toEqual({
bucketAssets: {
city: [],
country: [],
duration: [],
id: [],
isArchived: [],
isFavorite: [],
isImage: [],
isTrashed: [],
isVideo: [],
livePhotoVideoId: [],
localDateTime: [],
ownerId: [],
projectionType: [],
ratio: [],
status: [],
thumbhash: [],
},
hasNextPage: false,
city: [],
country: [],
duration: [],
id: [],
isArchived: [],
isFavorite: [],
isImage: [],
isTrashed: [],
livePhotoVideoId: [],
localDateTime: [],
ownerId: [],
projectionType: [],
ratio: [],
status: [],
thumbhash: [],
});
});
});

View File

@ -610,12 +610,12 @@ export class AssetRepository {
eb
.case()
.when(sql`exif."exifImageHeight" = 0 or exif."exifImageWidth" = 0`)
.then(eb.lit(1.0))
.then(eb.lit(1))
.when('exif.orientation', 'in', sql<string>`('5', '6', '7', '8', '-90', '90')`)
.then(sql`round(exif."exifImageHeight"::numeric / exif."exifImageWidth"::numeric, 3)`)
.else(sql`round(exif."exifImageWidth"::numeric / exif."exifImageHeight"::numeric, 3)`)
.end(),
eb.lit(1.0),
eb.lit(1),
)
.as('ratio'),
])