┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Ernst <[email protected]>2026-05-02 22:50:10 +0200
committerMéven Car <[email protected]>2026-05-05 12:35:31 +0000
commit372de07251d6693078fac42ee574b76b754e9e34 (patch)
tree52c0720cdb223e53b3fc68d47d48730ed5fc6ef0
parentbc62bf723d5a90c8aabc2629332542feca25e78c (diff)
Search: Fix title being displayed percent-encoded for baloosearch
Prior to this commit, searching in Dolphin using "File Indexing" results in the location bar showing a percent-encoded title instead of a human-readable one.
-rw-r--r--src/search/dolphinquery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/dolphinquery.cpp b/src/search/dolphinquery.cpp
index 4b7627846..2db574673 100644
--- a/src/search/dolphinquery.cpp
+++ b/src/search/dolphinquery.cpp
@@ -225,7 +225,7 @@ QUrl DolphinQuery::toUrl() const
query.setSearchString(balooQueryStrings.join(QLatin1Char(' ')));
- return query.toSearchUrl(QUrl::toPercentEncoding(title()));
+ return query.toSearchUrl(title());
}
#endif