summaryrefslogtreecommitdiffstats
path: root/activities/views/posts.py
diff options
context:
space:
mode:
Diffstat (limited to 'activities/views/posts.py')
-rw-r--r--activities/views/posts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/activities/views/posts.py b/activities/views/posts.py
index 60873a7..65b324a 100644
--- a/activities/views/posts.py
+++ b/activities/views/posts.py
@@ -21,7 +21,7 @@ class Individual(TemplateView):
self.identity = by_handle_or_404(self.request, handle, local=False)
self.post_obj = get_object_or_404(self.identity.posts, pk=post_id)
# If they're coming in looking for JSON, they want the actor
- accept = request.META.get("HTTP_ACCEPT", "text/html").lower()
+ accept = request.headers.get("accept", "text/html").lower()
if (
"application/json" in accept
or "application/ld" in accept