We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c7ad02 commit af6d579Copy full SHA for af6d579
src/HttpUserAgentParser/HttpUserAgentParser.cs
@@ -11,13 +11,13 @@ namespace MyCSharp.HttpUserAgentParser;
11
/// Parser logic for user agents
12
/// </summary>
13
public static class HttpUserAgentParser
14
-
15
{
16
/// <summary>
17
/// Parses given <param name="userAgent">user agent</param>
18
19
public static HttpUserAgentInformation Parse(string userAgent)
20
+ // prepare
21
userAgent = Cleanup(userAgent);
22
23
// analyze
0 commit comments