From bfe3b9844a9828a0496079271ea0842af76c2a04 Mon Sep 17 00:00:00 2001 From: Zentino <52699319+Zylsjsp@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:34:16 +0800 Subject: [PATCH] Update src/gui/rss/rsswidget.cpp Co-authored-by: Vladimir Golovnev --- src/gui/rss/rsswidget.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gui/rss/rsswidget.cpp b/src/gui/rss/rsswidget.cpp index 521e8eb2f..253cc8a6e 100644 --- a/src/gui/rss/rsswidget.cpp +++ b/src/gui/rss/rsswidget.cpp @@ -589,8 +589,7 @@ void RSSWidget::convertRelativePathToAbsolute(QString &html, const QString &base break; // invalid url, should never happen QString absolutePath = normalizedBasePath + relativePath; - html.replace(fullMatch, - prefix + absolutePath + suffix); + html.replace(fullMatch, prefix + absolutePath + suffix); } }