You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Unify URI encoding/decoding and add to C#
http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user