diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-01-28 14:48:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-28 14:48:59 +0100 |
commit | e50422d01cfc3b97ee259079d7fe88528f9dccbd (patch) | |
tree | 066731a9a3a000b97df58d33dd18841ef7f0b234 /editor/plugins | |
parent | 726967f45318359d95e3b0c359e088ca6d430292 (diff) | |
parent | e829b7aee48cfc988abea5a42bdbf02638a16513 (diff) |
Merge pull request #43978 from aaronfranke/cs-string
Unify URI encoding/decoding, handle spaces-are-pluses, and handle hex/bin prefix automatically
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 7c39175049..d726cd031e 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -900,7 +900,7 @@ void EditorAssetLibrary::_search(int p_page) { } if (filter->get_text() != String()) { - args += "&filter=" + filter->get_text().http_escape(); + args += "&filter=" + filter->get_text().uri_encode(); } if (p_page > 0) { |