From 5fd690b9686b3bf5fdcaf2748c3397a3d262ef41 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 20 Sep 2023 10:45:07 +0200 Subject: [PATCH] wip #6296 --- app/src/ProcessFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/ProcessFile.php b/app/src/ProcessFile.php index 89ec741..d5ee9cd 100644 --- a/app/src/ProcessFile.php +++ b/app/src/ProcessFile.php @@ -183,7 +183,7 @@ class ProcessFile extends \Fluidbook\Tools\Jobs\ProcessFile $res = $this->getOut() . 'pdf/p' . $this->getPage() . '.pdf'; if (!file_exists($res)) { if ($this->getPage() > $this->getPDFPagesNumber()) { - throw new \Exception('PDF document has ' . $this->getPDFPagesNumber() . ' and you are requestion the page ' . $this->getPage()); + throw new \Exception('PDF document has ' . $this->getPDFPagesNumber() . ' and you are requesting the page ' . $this->getPage()); } PDFTools::split($this->getPdf(), $this->getOut() . '/pdf'); } -- 2.39.5