From d3afeb1b35eded62b9a836ca1898f6fc0931d220 Mon Sep 17 00:00:00 2001 From: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Date: Mon, 30 Sep 2024 13:27:02 -0500 Subject: [PATCH] Update useragent to reflect new project name This updates the useragent string utilized by http_client_tcp.cpp --- core/io/http_client_tcp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/io/http_client_tcp.cpp b/core/io/http_client_tcp.cpp index 70fcad543a1f..a24147847ac9 100644 --- a/core/io/http_client_tcp.cpp +++ b/core/io/http_client_tcp.cpp @@ -196,7 +196,7 @@ Error HTTPClientTCP::request(Method p_method, const String &p_url, const Vector< // Should it add utf8 encoding? } if (add_uagent) { - request += "User-Agent: GodotEngine/" + String(VERSION_FULL_BUILD) + " (" + OS::get_singleton()->get_name() + ")\r\n"; + request += "User-Agent: RedotEngine/" + String(VERSION_FULL_BUILD) + " (" + OS::get_singleton()->get_name() + ")\r\n"; } if (add_accept) { request += "Accept: */*\r\n";