From 74a50d62e3636c5c7a5d5dc2b31b08fa8f455f92 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Thu, 10 Apr 2025 10:24:09 +0200 Subject: [PATCH] fix #1692 --- src/librssguard/core/message.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/librssguard/core/message.cpp b/src/librssguard/core/message.cpp index e42540664..04e13f3b4 100644 --- a/src/librssguard/core/message.cpp +++ b/src/librssguard/core/message.cpp @@ -143,8 +143,9 @@ void Message::sanitize(const Feed* feed, bool fix_future_datetimes) { // Sanitize author. m_author = qApp->web()->stripTags(WebFactory::unescapeHtml(m_author)); - // Just unescape HTML entities. Other formatting is done by viewers. - m_contents = WebFactory::unescapeHtml(m_contents); + // NOTE: We do not need to de-escape HTML here because it is the job of all plugins to provide correct + // HTML of their articles. + // m_contents = WebFactory::unescapeHtml(m_contents); // Sanitize URL. m_url = m_url.trimmed();