diff --git a/core/io/http_client.cpp b/core/io/http_client.cpp index 0c51276eb..713bff540 100644 --- a/core/io/http_client.cpp +++ b/core/io/http_client.cpp @@ -101,6 +101,10 @@ Error HTTPClient::connect_to_host(const String &p_host, int p_port, bool p_ssl, } else { // Host contains hostname and needs to be resolved to IP resolving = IP::get_singleton()->resolve_hostname_queue_item(server_host); + if (resolving == IP::RESOLVER_INVALID_ID) { + status = STATUS_CANT_RESOLVE; + return ERR_CANT_RESOLVE; + } status = STATUS_RESOLVING; }