From 2f636553a9250046cc097bf061b70607b56c9f87 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Sun, 10 Jul 2022 18:50:21 +0200 Subject: [PATCH] Bug fix: RSS Feed should also announce utf-8 charset --- changedetectionio/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/__init__.py b/changedetectionio/__init__.py index a0597b91..2b10ace3 100644 --- a/changedetectionio/__init__.py +++ b/changedetectionio/__init__.py @@ -361,7 +361,7 @@ def changedetection_app(config=None, datastore_o=None): fe.pubDate(dt) response = make_response(fg.rss_str()) - response.headers.set('Content-Type', 'application/rss+xml') + response.headers.set('Content-Type', 'application/rss+xml;charset=utf-8') return response @app.route("/", methods=['GET'])