From 714fceec98ccc2b1a686ef239bbfe8b25989cc03 Mon Sep 17 00:00:00 2001 From: SBCrumb Date: Thu, 25 Sep 2025 18:51:21 -0400 Subject: [PATCH] another update --- api/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/routes.py b/api/routes.py index de6c0ed..238b67f 100644 --- a/api/routes.py +++ b/api/routes.py @@ -200,7 +200,7 @@ def register_routes( _log("INFO", f"Manual scan completed: {total_processed} items processed") background_tasks.add_task(scan_libraries) - return {"status": "started", "message": "Manual scan initiated"} + return {"status": "started", "message": "Manual scan initiated", "note": "Scan running in background - check logs for progress"} except Exception as e: _log("ERROR", f"Manual scan failed: {e}") raise HTTPException(status_code=500, detail=f"Manual scan failed: {str(e)}")