From f663bbfc539c9cce8643cf0407bfb9fe8686f8ba Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Mon, 1 Apr 2024 15:37:25 +0530 Subject: [PATCH] [mob] Rename --- mobile/lib/face/db.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/face/db.dart b/mobile/lib/face/db.dart index 73dc462802..84a208f047 100644 --- a/mobile/lib/face/db.dart +++ b/mobile/lib/face/db.dart @@ -334,10 +334,10 @@ class FaceMLDataDB { for (final map in faceIDToPersonID.entries) { final faceID = map.key; - final personID = map.value; + final clusterID = map.value; batch.update( facesTable, - {faceClusterId: personID}, + {faceClusterId: clusterID}, where: '$faceIDColumn = ?', whereArgs: [faceID], );