From ec8551b437d9baa4932cf4f30f5dbb67564475ea Mon Sep 17 00:00:00 2001 From: Niaz Date: Mon, 8 Jul 2024 23:40:17 +0200 Subject: [PATCH] Make full rescan of faces work again --- api/views/faces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/views/faces.py b/api/views/faces.py index 0be361ab6d..6890dfaec9 100644 --- a/api/views/faces.py +++ b/api/views/faces.py @@ -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: