fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove race condition in building ebooks.
[wolnelektury.git]
/
src
/
catalogue
/
api
/
views.py
diff --git
a/src/catalogue/api/views.py
b/src/catalogue/api/views.py
index
335a301
..
8b0dc1a
100644
(file)
--- a/
src/catalogue/api/views.py
+++ b/
src/catalogue/api/views.py
@@
-45,7
+45,7
@@
class BookList(ListAPIView):
serializer_class = serializers.BookListSerializer
def get(self, request, filename=None, **kwargs):
serializer_class = serializers.BookListSerializer
def get(self, request, filename=None, **kwargs):
- if filename and 'count' not in request.query_params:
+ if filename and
not kwargs.get('tags') and
'count' not in request.query_params:
try:
with open(os.path.join(settings.MEDIA_ROOT, 'api', '%s.%s' % (filename, request.accepted_renderer.format)), 'rb') as f:
content = f.read()
try:
with open(os.path.join(settings.MEDIA_ROOT, 'api', '%s.%s' % (filename, request.accepted_renderer.format)), 'rb') as f:
content = f.read()