Update src/gui/rss/rsswidget.cpp

Co-authored-by: Vladimir Golovnev <glassez@yandex.ru>
This commit is contained in:
Zentino 2024-12-05 23:34:16 +08:00 committed by GitHub
commit bfe3b9844a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
}
}