From: Toke Høiland-Jørgensen Date: Tue, 1 Dec 2020 21:15:11 +0000 (+0100) Subject: views/patch: Set correct encoding for patches X-Git-Tag: v3.0.0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fdc8895b047dfec00105d35b96d0ed17f0daf39;p=thirdparty%2Fpatchwork.git 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 Suggested-by: Konstantin Ryabitsev Signed-off-by: Toke Høiland-Jørgensen --- diff --git a/patchwork/views/patch.py b/patchwork/views/patch.py index 5d772fdf..74495714 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 '