Skip to content

Commit

Permalink
Make full rescan of faces work again
Browse files Browse the repository at this point in the history
  • Loading branch information
derneuere committed Jul 8, 2024
1 parent 5a20d3c commit ec8551b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/views/faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _scan_faces(self, request, format=None):
chain.append(download_models, request.user)
try:
job_id = uuid.uuid4()
chain.append(scan_faces, request.user, job_id)
chain.append(scan_faces, request.user, job_id, True)
chain.run()
return Response({"status": True, "job_id": job_id})
except BaseException:
Expand Down

0 comments on commit ec8551b

Please sign in to comment.