X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/9d313b5b47b31bf6fd82987b967923c4eca011ac..cd202b3bf0673fcd86cf7ab9e757e7c55ef60240:/apps/catalogue/views.py diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index e436b0ba..72ed9cb9 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -353,7 +353,7 @@ def book_epub(request, pk, rev_pk): ) if doc.owner_organization is not None and doc.owner_organization.logo: ctx.cover_logo = 'http://%s%s' % (request.get_host(), doc.owner_organization.logo.url) - epub_file = EpubFormat(sst).build() + epub_file = EpubFormat(sst).build(ctx) from catalogue.ebook_utils import serve_file return serve_file(epub_file.get_filename(), '%d.epub' % doc.pk, 'application/epub+zip')