[mob][photos] Correct mistake

This commit is contained in:
laurenspriem 2024-05-24 11:16:40 +05:30
parent 5587373b42
commit cc91cb8012

View file

@ -671,7 +671,7 @@ class FaceMLDataDB {
Future<int> getClusteredFileCount() async {
final db = await instance.asyncDB;
final List<Map<String, dynamic>> maps = await db.getAll(
'SELECT COUNT(DISTINCT $fcFaceId) as count FROM $faceClustersTable',
'SELECT $fcFaceId FROM $faceClustersTable',
);
final Set<int> fileIDs = {};
for (final map in maps) {