From ac08d5b37dfae73e587ad76600ec6db8f233dd29 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Wed, 29 Jan 2025 17:13:12 +0530 Subject: [PATCH] [mob] Fix lint --- .../machine_learning/face_ml/person/person_service.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mobile/lib/services/machine_learning/face_ml/person/person_service.dart b/mobile/lib/services/machine_learning/face_ml/person/person_service.dart index 6ebf9ffd90..f12250ddff 100644 --- a/mobile/lib/services/machine_learning/face_ml/person/person_service.dart +++ b/mobile/lib/services/machine_learning/face_ml/person/person_service.dart @@ -202,7 +202,7 @@ class PersonService { clusterID: clusterID, ); if (data.email != null) { - _resetEmailToNameCache(); + _resetEmailToNameCache().ignore(); } return PersonEntity(result.id, data); } @@ -291,7 +291,7 @@ class PersonService { justName.data.logStats(); if (entity.data.email != null) { - _resetEmailToNameCache(); + _resetEmailToNameCache().ignore(); } } else { await entityService.deleteEntry(personID); @@ -299,7 +299,7 @@ class PersonService { if (entity != null) { if (entity.data.email != null) { - _resetEmailToNameCache(); + _resetEmailToNameCache().ignore(); } } }