diff options
Diffstat (limited to 'activities')
-rw-r--r-- | activities/views/posts.py | 2 |
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 |