mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 09:15:44 +03:00
fix(server): failed to get albums with archived assets (#15611)
* fix(mobile): failed to get albums with archived assets * sql
This commit is contained in:
@@ -98,7 +98,6 @@ select
|
||||
where
|
||||
"albums_assets_assets"."albumsId" = "albums"."id"
|
||||
and "assets"."deletedAt" is null
|
||||
and "assets"."isArchived" = $1
|
||||
order by
|
||||
"assets"."fileCreatedAt" desc
|
||||
) as "asset"
|
||||
@@ -106,7 +105,7 @@ select
|
||||
from
|
||||
"albums"
|
||||
where
|
||||
"albums"."id" = $2
|
||||
"albums"."id" = $1
|
||||
and "albums"."deletedAt" is null
|
||||
|
||||
-- AlbumRepository.getByAssetId
|
||||
|
||||
Reference in New Issue
Block a user