diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-04-13 22:20:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-13 22:20:35 +0200 |
commit | e7e9d9a0ea87c246610e27fbace47b02e06d0d14 (patch) | |
tree | 732f2bc4a712fd27213d2465d4cd057ecb43a1f9 /editor/plugins | |
parent | 1d15c5d726600047805ab10d53ff2a7efdc41d8e (diff) | |
parent | 00e98458ba3585f4e5e027e24b3362d4ae31a146 (diff) |
Merge pull request #18156 from RandomShaper/fix-messed-pr
Revert "Unify http- and percent- encode/decode"
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 2 |
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 b72c9b25be..c203b4b81e 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) { |