From 372de07251d6693078fac42ee574b76b754e9e34 Mon Sep 17 00:00:00 2001 From: Felix Ernst Date: Sat, 2 May 2026 22:50:10 +0200 Subject: 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. --- src/search/dolphinquery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.3