From 59afbad0727919c2c06f0f60770ca749091ca2a4 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 5 Jun 2023 14:45:43 +0200 Subject: [PATCH] wip #5991 --- app/Models/FluidbookDocument.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/FluidbookDocument.php b/app/Models/FluidbookDocument.php index 5ed91da81..e78c9566e 100644 --- a/app/Models/FluidbookDocument.php +++ b/app/Models/FluidbookDocument.php @@ -100,7 +100,7 @@ class FluidbookDocument extends ToolboxModel $nbfiles = count($files); for ($i = 1; $i <= $this->pages; $i++) { foreach ($files as $file) { - $job = new FluidbookDocumentFileProcess($this, $i, $file[0] ?? 'jpg', $file[1] ?? 150, $file[2] ?? true, $file[3] ?? true, $file[4] ?? 'html', true); + $job = new FluidbookDocumentFileProcess($this, $i, $file[0] ?? 'jpg', $file[1] ?? 150, 85, $file[2] ?? true, $file[3] ?? true, $file[4] ?? 'html', true); if ($sync) { $job->handle(); } else { -- 2.39.5