You've already forked godot
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user