diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-12-15 16:31:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 16:31:41 +0100 |
commit | 68cf66cb56f12594abbec36dabc93ceba6bba961 (patch) | |
tree | 70c95a1605a7d787b5b1fc2bbf5b45a972827ad4 /platform | |
parent | fa6f1522b17f4aeda44d6be7162c48bdc954089a (diff) | |
parent | 206275f3e70187252c4b80ec0ba33f390e47f2ec (diff) |
Merge pull request #14703 from Faless/fix_http_client
Fix javascript build error and improve #14604
Diffstat (limited to 'platform')
-rw-r--r-- | platform/javascript/http_client_javascript.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/javascript/http_client_javascript.cpp b/platform/javascript/http_client_javascript.cpp index 9ce27c9a04..b170ba6f35 100644 --- a/platform/javascript/http_client_javascript.cpp +++ b/platform/javascript/http_client_javascript.cpp @@ -42,12 +42,12 @@ Error HTTPClient::connect_to_host(const String &p_host, int p_port, bool p_ssl, host = p_host; - String host_lower = conn_host.to_lower(); + String host_lower = host.to_lower(); if (host_lower.begins_with("http://")) { - host.replace_first("http://", ""); + host = host.substr(7, host.length() - 7); } else if (host_lower.begins_with("https://")) { use_tls = true; - host.replace_first("https://", ""); + host = host.substr(8, host.length() - 8); } ERR_FAIL_COND_V(host.length() < HOST_MIN_LEN, ERR_INVALID_PARAMETER); |