We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29d5df6 commit b97c3b6Copy full SHA for b97c3b6
src/pretalx/cfp/flow.py
@@ -15,7 +15,7 @@
15
from django.http import HttpResponseNotAllowed
16
from django.shortcuts import redirect
17
from django.urls import reverse
18
-from django.utils.functional import cached_property, Promise
+from django.utils.functional import Promise, cached_property
19
from django.utils.translation import gettext
20
from django.utils.translation import gettext_lazy as _
21
from django.views.generic.base import TemplateResponseMixin
src/pretalx/common/views/cache.py
@@ -14,7 +14,7 @@
14
def get_requested_etag(request):
"""Return the ETag requested by the client, or None if not found."""
if if_none_match := request.headers.get("If-None-Match"):
- return if_none_match.strip('""')
+ return if_none_match.strip('"')
def get_etag(response):
0 commit comments