Removes one last portion of PNG vs WebP

This commit is contained in:
Trenton Holmes 2022-06-12 09:12:02 -07:00
parent 1df517afd3
commit 222e1968d8

View File

@ -362,9 +362,8 @@ class DocumentViewSet(
handle = doc.thumbnail_file
# TODO: Send ETag information and use that to send new thumbnails
# if available
content_type = "image/webp"
return HttpResponse(handle, content_type=content_type)
return HttpResponse(handle, content_type="image/webp")
except (FileNotFoundError, Document.DoesNotExist):
raise Http404()