aboutsummaryrefslogtreecommitdiff
path: root/editor/plugins/asset_library_editor_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2018-04-13 22:20:35 +0200
committerGitHub2018-04-13 22:20:35 +0200
commite7e9d9a0ea87c246610e27fbace47b02e06d0d14 (patch)
tree732f2bc4a712fd27213d2465d4cd057ecb43a1f9 /editor/plugins/asset_library_editor_plugin.cpp
parent1d15c5d726600047805ab10d53ff2a7efdc41d8e (diff)
parent00e98458ba3585f4e5e027e24b3362d4ae31a146 (diff)
downloadgodot-e7e9d9a0ea87c246610e27fbace47b02e06d0d14.tar.gz
godot-e7e9d9a0ea87c246610e27fbace47b02e06d0d14.tar.zst
godot-e7e9d9a0ea87c246610e27fbace47b02e06d0d14.zip
Merge pull request #18156 from RandomShaper/fix-messed-pr
Revert "Unify http- and percent- encode/decode"
Diffstat (limited to '')
-rw-r--r--editor/plugins/asset_library_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp
index b72c9b25b..c203b4b81 100644
--- a/editor/plugins/asset_library_editor_plugin.cpp
+++ b/editor/plugins/asset_library_editor_plugin.cpp
@@ -902,7 +902,7 @@ void EditorAssetLibrary::_search(int p_page) {
}
if (filter->get_text() != String()) {
- args += "&filter=" + filter->get_text().percent_encode();
+ args += "&filter=" + filter->get_text().http_escape();
}
if (p_page > 0) {