From 224749c8f34cb7895152b04ba16ea347ce0618be Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 7 Aug 2025 16:53:23 +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 9f55794..cb374c1 100644 --- a/app/process.php +++ b/app/process.php @@ -33,7 +33,7 @@ try { } else if ($_POST['operation'] === 'extracttexts') { $res = PDFOperations::extractTexts($_POST['pdf'], $_POST['out'], $_POST['mode'] ?? 'standard', $_POST['method'] ?? 'fluidbook', $_POST['ignoreseparators'] ?? ''); } else if ($_POST['operation'] === 'extracthightlightsdata') { - $res = PDFOperations::extractHighlightsData($_POST['pdf'], $_POST['out'], $_POST['mode'], $_POST['ignoreseparators']); + $res = PDFOperations::extractHighlightsData($_POST['pdf'], $_POST['out'], $_POST['mode'], $_POST['ignoreseparators'] ?? ''); } else if ($_POST['operation'] === 'extractmarkdown') { $res = PDFOperations::extractMarkdown($_POST['pdf'], $_POST['out']); } else if ($_POST['operation'] === 'extractpdfarea') { -- 2.39.5