From 29b88d0c107b5413e4bd603cb0e996bb490298c0 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 7 Aug 2025 16:44:35 +0200 Subject: [PATCH] wip #7684 --- app/process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/process.php b/app/process.php index 7705c73..9f55794 100644 --- a/app/process.php +++ b/app/process.php @@ -37,7 +37,7 @@ try { } else if ($_POST['operation'] === 'extractmarkdown') { $res = PDFOperations::extractMarkdown($_POST['pdf'], $_POST['out']); } else if ($_POST['operation'] === 'extractpdfarea') { - $res = PDFOperations::extractArea($_POST['pdf'], $_POST['out'], $_POST['page'], json_decode($_POST['area'], true), json_decode($_POST['options'], true)); + $res = PDFOperations::extractArea($_POST['pdf'], $_POST['out'], $_POST['page'], $_POST['area'], $_POST['options']); } else { if (!isset($_POST['pdf'])) { if (isset($_POST['toolbox'])) { -- 2.39.5