summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToke Høiland-Jørgensen <toke@toke.dk>2020-12-01 22:15:11 +0100
committerStephen Finucane <stephenfinucane@hotmail.com>2020-12-11 22:56:15 +0000
commit2fdc8895b047dfec00105d35b96d0ed17f0daf39 (patch)
tree738e532f30b0fb67aec1dbe3b9e82ae11eb65be7
parente1cd856dd6a723675cf1cd8e0fcc2e51f9c326e6 (diff)
downloadpatchwork-2fdc8895b047dfec00105d35b96d0ed17f0daf39.tar
patchwork-2fdc8895b047dfec00105d35b96d0ed17f0daf39.tar.gz
views/patch: Set correct encoding for patches
The patch_mbox view returns text/plain data without specifying a character set, which means clients will assume the default of iso-8559-1 as defined in the HTTP/1.1 standard. Since the data being returned is in fact utf-8 encoded, set the encoding accordingly in the HTTP Content-Type header. Reported-by: Jakub Kicinski <kuba@kernel.org> Suggested-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org> Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
-rw-r--r--patchwork/views/patch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/patchwork/views/patch.py b/patchwork/views/patch.py
index 5d772fd..7449571 100644
--- a/patchwork/views/patch.py
+++ b/patchwork/views/patch.py
@@ -154,7 +154,7 @@ def patch_mbox(request, project_id, msgid):
patch = get_object_or_404(Patch, project_id=project.id, msgid=db_msgid)
series_id = request.GET.get('series')
- response = HttpResponse(content_type='text/plain')
+ response = HttpResponse(content_type='text/plain; charset=utf-8')
if series_id:
if not patch.series:
raise Http404('Patch does not have an associated series. This is '