From 70f8ee92c2ae0b8dbaecb24c563f0cecabf87635 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Tue, 11 Aug 2020 08:08:14 +0200 Subject: [PATCH] Fix #267. --- src/librssguard/core/feeddownloader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librssguard/core/feeddownloader.cpp b/src/librssguard/core/feeddownloader.cpp index ec0a86f4e..454d6f9b6 100644 --- a/src/librssguard/core/feeddownloader.cpp +++ b/src/librssguard/core/feeddownloader.cpp @@ -102,10 +102,10 @@ void FeedDownloader::updateOneFeed(Feed* feed) { msg.m_author = msg.m_author.toUtf8(); msg.m_accountId = acc_id; - // Sanitize title. Remove newlines etc. - msg.m_title = QUrl::fromPercentEncoding(msg.m_title.toUtf8()) + // Sanitize title. + msg.m_title = msg.m_title - // Replace all continuous white space. + // Shrink consecutive whitespaces. .replace(QRegularExpression(QSL("[\\s]{2,}")), QSL(" ")) // Remove all newlines and leading white space.