Skip to content

Commit

Permalink
Merge pull request godotengine#10 from Tekisasu-JohnK/Update-useragent
Browse files Browse the repository at this point in the history
Update useragent to reflect new project name
  • Loading branch information
Bioblaze authored Oct 8, 2024
2 parents 0e98c9d + d3afeb1 commit afea543
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 afea543

Please sign in to comment.