From 896fad710142a7c82b849ffe9f0d492d6a99c5ca Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Wed, 9 Aug 2017 17:29:33 +0200 Subject: [PATCH] fix for non-unique galleries --- apps/wiki/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/wiki/views.py b/apps/wiki/views.py index fcbdf8bf..f8ba46ec 100644 --- a/apps/wiki/views.py +++ b/apps/wiki/views.py @@ -220,9 +220,9 @@ def gallery(request, directory): images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)] images.sort() - book = Book.objects.get(gallery=directory) + books = Book.objects.filter(gallery=directory) - if not book.public and not request.user.is_authenticated(): + if not all(book.public for book in books) and not request.user.is_authenticated(): return HttpResponseForbidden("Not authorized.") return JSONResponse(images) -- 2.20.1