mirror of
https://github.com/immich-app/immich.git
synced 2025-01-26 17:21:29 +02:00
fix(server): not in album filter show motion part of LivePhotos (#7175)
This commit is contained in:
parent
88214a485b
commit
8e1c85fe4f
@ -178,7 +178,10 @@ export function searchAssetBuilder(
|
||||
);
|
||||
|
||||
if (options.isNotInAlbum) {
|
||||
builder.leftJoin(`${builder.alias}.albums`, 'albums').andWhere('albums.id IS NULL');
|
||||
builder
|
||||
.leftJoin(`${builder.alias}.albums`, 'albums')
|
||||
.andWhere('albums.id IS NULL')
|
||||
.andWhere(`${builder.alias}.isVisible = true`);
|
||||
}
|
||||
|
||||
if (options.withFaces || options.withPeople) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user