diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2018-04-12 21:12:34 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2018-04-12 21:12:34 +0200 |
commit | 00e98458ba3585f4e5e027e24b3362d4ae31a146 (patch) | |
tree | 430bc6dc9ab3905a12d19a91ee395f4a65e68de2 /editor/plugins | |
parent | 3a5b25d5b489ad88c2861c9c37b56469580fbf03 (diff) |
Revert "Unify http- and percent- encode/decode"
This reverts commit b76ee30917c63211ac9e94a21bebbddf518d169f.
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) { |