You do not have to worry about this. It breaks your user agent into several parts inside, because this is how the User-Agent header in the RFC is defined:
The user agent request header field contains information about the user agent file sending the request. This is done for statistical purposes, tracking protocol violations and automatically recognizing user agents to adapt responses to avoid a specific user
agent restrictions. User agents MUST include this field using Requests. The field may contain several product tokens (section 3.8) and comments identifying the agent and any offal that form a significant part of the user agent. By convention, product tokens are listed in order of importance for identifying the application.
User-Agent = "User-Agent" ":" 1 * (product | comment)
So, you see those βproduct tokensβ, and if you examine them, you will see that they have the Product and Comment properties.
However, this does not mean that it will send it as 6 headers. It will send one User-Agent header, the same as you, as a string.
source share