From 367a456bcccc5b90dab9657b4398f8682dd234fe Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Tue, 12 May 2026 23:13:25 +0900 Subject: [PATCH] fix: specify charset in Content-Type header for HTML response --- manifests/media/qbittorrent.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/media/qbittorrent.yaml b/manifests/media/qbittorrent.yaml index f240ec3..ffd078a 100644 --- a/manifests/media/qbittorrent.yaml +++ b/manifests/media/qbittorrent.yaml @@ -111,7 +111,7 @@ spec: '''.encode() self.send_response(200) - self.send_header('Content-Type', 'text/html') + self.send_header('Content-Type', 'text/html; charset=utf-8') self.send_header('Content-Length', len(body)) self.send_header('Content-Security-Policy', 'frame-ancestors *') self.end_headers()