fix(crawl-status): partial_data

This commit is contained in:
Gergo Moricz
2024-08-06 17:06:21 +02:00
parent 1ab119c874
commit 8e0aa69603
+2 -2
View File
@@ -26,8 +26,8 @@ export async function crawlStatusController(req: Request, res: Response) {
if (isCancelled) { if (isCancelled) {
return res.json({ return res.json({
status: "failed", status: "failed",
docs: null, data: null,
partialDocs: [], partial_data: [],
}); });
} }