Skip to content

Commit

Permalink
Update useragent to reflect new project name
Browse files Browse the repository at this point in the history
This updates the useragent string utilized by http_client_tcp.cpp
  • Loading branch information
Tekisasu-JohnK committed Sep 30, 2024
1 parent e3213aa commit d3afeb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/io/http_client_tcp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit d3afeb1

Please sign in to comment.