summaryrefslogtreecommitdiffstats
path: root/src/slxbrowser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/slxbrowser.cpp')
-rw-r--r--src/slxbrowser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slxbrowser.cpp b/src/slxbrowser.cpp
index 13ed326..aee94b2 100644
--- a/src/slxbrowser.cpp
+++ b/src/slxbrowser.cpp
@@ -208,7 +208,7 @@ static QRegularExpression urlListToRegExp(const QStringList &list)
for (const QString &str : list) {
QString mangled;
if (str.contains(QLatin1String("//"))) {
- mangled = str;
+ mangled = str;
} else if (str.contains(QLatin1Char('/')) || str.contains(QLatin1String("**"))) {
mangled = "*//" + str;
} else {