diff --git a/scene/main/http_request.cpp b/scene/main/http_request.cpp index 4c93fe0383b..f3d3ae01b67 100644 --- a/scene/main/http_request.cpp +++ b/scene/main/http_request.cpp @@ -240,7 +240,7 @@ bool HTTPRequest::_handle_response(bool *ret_value) { String new_request; for (const String &E : rheaders) { - if (E.containsn("Location: ")) { + if (E.to_lower().begins_with("location: ")) { new_request = E.substr(9).strip_edges(); } }