diff options
| author | Felix Ernst <[email protected]> | 2026-05-02 22:50:10 +0200 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2026-05-05 12:35:31 +0000 |
| commit | 372de07251d6693078fac42ee574b76b754e9e34 (patch) | |
| tree | 52c0720cdb223e53b3fc68d47d48730ed5fc6ef0 /src | |
| parent | bc62bf723d5a90c8aabc2629332542feca25e78c (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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/search/dolphinquery.cpp | 2 |
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 |
