[mob][photos] Show faces in file info regardless of blur value

This commit is contained in:
laurenspriem 2024-04-25 16:30:00 +05:30
parent 52a7f2753e
commit f101468a8d

View file

@ -71,9 +71,9 @@ class _FacesItemWidgetState extends State<FacesItemWidget> {
];
}
// Remove faces with low scores and blurry faces
// Remove faces with low scores
if (!kDebugMode) {
faces.removeWhere((face) => (face.isBlurry || face.score < 0.75));
faces.removeWhere((face) => (face.score < 0.75));
}
if (faces.isEmpty) {