fix: incorrect asset face sync (#27243)

* fix: incorrect asset face sync

* chore: sync sql
This commit is contained in:
Brandon Wees
2026-03-26 09:39:02 -05:00
committed by GitHub
parent b36911a16b
commit d8b39906f9
3 changed files with 10 additions and 2 deletions
@@ -487,7 +487,6 @@ class AssetFaceSync extends BaseSync {
])
.leftJoin('asset', 'asset.id', 'asset_face.assetId')
.where('asset.ownerId', '=', options.userId)
.where('asset_face.isVisible', '=', true)
.stream();
}
}