From e1c9bca999b8a0287e85d5b2a2d54b182dc7e92e Mon Sep 17 00:00:00 2001 From: Zentino Date: Wed, 18 Dec 2024 03:02:48 +0800 Subject: [PATCH] fix: incompatible operand types --- src/gui/rss/rsswidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/rss/rsswidget.cpp b/src/gui/rss/rsswidget.cpp index c856f1764..9ddaece6b 100644 --- a/src/gui/rss/rsswidget.cpp +++ b/src/gui/rss/rsswidget.cpp @@ -654,7 +654,7 @@ namespace relativePath = relativePath.mid(1); const QString absoluteUrl = !host.isEmpty() - ? (defaultScheme + u":" + host) : (normalizedBaseUrl + relativePath); + ? QString(defaultScheme + u":" + host) : QString(normalizedBaseUrl + relativePath); const QString fullMatch = match.captured(0); const QString prefix = match.captured(1); const QString suffix = match.captured(7);