facerecog: check key in post process
Signed-off-by: Varun Patil <varunpatil@ucla.edu>pull/563/head
parent
8cf910f3b6
commit
81708a4de7
|
@ -132,7 +132,7 @@ class FaceRecognitionBackend extends Backend
|
|||
|
||||
// Post process
|
||||
foreach ($faces as &$row) {
|
||||
$row['id'] = $row['name'] ?: (int) $row['id'];
|
||||
$row['id'] = \array_key_exists('name', $row) ? $row['name'] : (int) $row['id'];
|
||||
$row['count'] = (int) $row['count'];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue