mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
fix(server): without queries (#2621)
This commit is contained in:
parent
9f2b5ea86e
commit
9730bf0acc
1 changed files with 2 additions and 2 deletions
|
|
@ -117,7 +117,6 @@ export class AssetRepository implements IAssetRepository {
|
||||||
};
|
};
|
||||||
where = {
|
where = {
|
||||||
isVisible: true,
|
isVisible: true,
|
||||||
resizePath: Not(IsNull()),
|
|
||||||
exifInfo: {
|
exifInfo: {
|
||||||
assetId: IsNull(),
|
assetId: IsNull(),
|
||||||
},
|
},
|
||||||
|
|
@ -130,6 +129,7 @@ export class AssetRepository implements IAssetRepository {
|
||||||
};
|
};
|
||||||
where = {
|
where = {
|
||||||
isVisible: true,
|
isVisible: true,
|
||||||
|
resizePath: Not(IsNull()),
|
||||||
smartInfo: {
|
smartInfo: {
|
||||||
clipEmbedding: IsNull(),
|
clipEmbedding: IsNull(),
|
||||||
},
|
},
|
||||||
|
|
@ -141,7 +141,7 @@ export class AssetRepository implements IAssetRepository {
|
||||||
smartInfo: true,
|
smartInfo: true,
|
||||||
};
|
};
|
||||||
where = {
|
where = {
|
||||||
resizePath: IsNull(),
|
resizePath: Not(IsNull()),
|
||||||
isVisible: true,
|
isVisible: true,
|
||||||
smartInfo: {
|
smartInfo: {
|
||||||
tags: IsNull(),
|
tags: IsNull(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue