1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Unify http- and percent- encode/decode

There was a percent-prefixed version, which was exposed, and a http-prefixed version which was not (only to GDNative).
This commit keeps the percent-prefixed versions, but with the http-prefixed implementations.
This commit is contained in:
Pedro J. Estébanez
2018-03-23 20:44:46 +01:00
parent 4a5723f59e
commit b76ee30917
7 changed files with 8 additions and 108 deletions

View File

@@ -902,7 +902,7 @@ void EditorAssetLibrary::_search(int p_page) {
}
if (filter->get_text() != String()) {
args += "&filter=" + filter->get_text().http_escape();
args += "&filter=" + filter->get_text().percent_encode();
}
if (p_page > 0) {