X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..bc0deae552c910cc59f762da667d028f9482c3d4:/src/catalogue/tasks.py

diff --git a/src/catalogue/tasks.py b/src/catalogue/tasks.py
index 4807339ba..30bc55fe2 100644
--- a/src/catalogue/tasks.py
+++ b/src/catalogue/tasks.py
@@ -7,6 +7,8 @@ from traceback import print_exc
 from celery.task import task
 from celery.utils.log import get_task_logger
 from django.conf import settings
+
+from catalogue.utils import gallery_path
 from wolnelektury.utils import localtime_to_utc
 from waiter.models import WaitedFile
 
@@ -46,13 +48,15 @@ def build_custom_pdf(book_id, customizations, file_name, waiter_id=None):
             kwargs = {
                 'cover': True,
             }
-            if 'no-cover' in customizations:
+            if 'nocover' in customizations:
                 kwargs['cover'] = False
-                customizations.remove('no-cover')
-            pdf = Book.objects.get(pk=book_id).wldocument().as_pdf(
-                    customizations=customizations,
-                    morefloats=settings.LIBRARIAN_PDF_MOREFLOATS,
-                    **kwargs)
+                customizations.remove('nocover')
+            wldoc = Book.objects.get(pk=book_id).wldocument()
+            pdf = wldoc.as_pdf(
+                customizations=customizations,
+                morefloats=settings.LIBRARIAN_PDF_MOREFLOATS,
+                ilustr_path=gallery_path(wldoc.book_info.url.slug),
+                **kwargs)
             DefaultStorage().save(file_name, File(open(pdf.get_filename())))
     finally:
         if waiter_id is not None: