From b3be9c6234544a7840936e750cc69f7b8dab27d6 Mon Sep 17 00:00:00 2001 From: OUNZAR Aymane Date: Wed, 12 Nov 2025 11:23:06 +0100 Subject: [PATCH] MAX_PAGES = 100000 --- .../software/SPDF/controller/api/MultiPageLayoutController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/src/main/java/stirling/software/SPDF/controller/api/MultiPageLayoutController.java b/app/core/src/main/java/stirling/software/SPDF/controller/api/MultiPageLayoutController.java index bebb75f0e..7cc53994e 100644 --- a/app/core/src/main/java/stirling/software/SPDF/controller/api/MultiPageLayoutController.java +++ b/app/core/src/main/java/stirling/software/SPDF/controller/api/MultiPageLayoutController.java @@ -50,7 +50,7 @@ public class MultiPageLayoutController { public ResponseEntity mergeMultiplePagesIntoOne( @ModelAttribute MergeMultiplePagesRequest request) throws IOException { - int MAX_PAGES = 10000; + int MAX_PAGES = 100000; int MAX_COLS = 300; int MAX_ROWS = 300;