]> _ Git - fluidbook_processfarm.git/commitdiff
wip #6296
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 20 Sep 2023 08:45:07 +0000 (10:45 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 20 Sep 2023 08:45:07 +0000 (10:45 +0200)
app/src/ProcessFile.php

index 89ec741447f5bfc802b8b7910c0d1b9562e2ce12..d5ee9cd22841320f142f059b9367b8ad58b3bab2 100644 (file)
@@ -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');
         }