diff --git a/src/base/rss/rss_item.cpp b/src/base/rss/rss_item.cpp index 1d655efa8..37d55102e 100644 --- a/src/base/rss/rss_item.cpp +++ b/src/base/rss/rss_item.cpp @@ -67,7 +67,7 @@ bool Item::isValidPath(const QString &path) { static const QRegularExpression re( QString(R"(\A[^\%1]+(\%1[^\%1]+)*\z)").arg(Item::PathSeparator) - , QRegularExpression::DontCaptureOption | QRegularExpression::OptimizeOnFirstUsageOption); + , QRegularExpression::DontCaptureOption); if (path.isEmpty() || !re.match(path).hasMatch()) { qDebug() << "Incorrect RSS Item path:" << path;