fix if_modified_since by rounding down

This commit is contained in:
Laura Klünder 2017-12-19 20:41:32 +01:00
parent a527317c27
commit b2c56a00b6

View file

@ -378,7 +378,7 @@ class SourceViewSet(MapdataViewSet):
def _image(self, request, pk=None):
source = self.get_object()
last_modified = os.path.getmtime(source.filepath)
last_modified = int(os.path.getmtime(source.filepath))
response = get_conditional_response(request, last_modified=last_modified)
if response is None:
response = HttpResponse(open(source.filepath, 'rb'), content_type=mimetypes.guess_type(source.name)[0])