You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DeviceParser incorrectly parses certain user-agent strings, resulting in wrong values for the family, brand, and model fields.
Example of the Issue:
User-Agent String: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5x build/mtc19t applewebkit/537.36 (KHTML, like Gecko) Chrome/51.0.2702.81 Mobile Safari/537.36
Current Output:
{
"family": "Nexus 5x build/mtc19t applewebkit/537.36 (KHTML, like Gecko",
"brand": "Generic_Android",
"model": "Nexus 5x build/mtc19t applewebkit/537.36 (KHTML, like Gecko"
}
Expected Output (not sure that it should be exactly like this):
The DeviceParser incorrectly parses certain user-agent strings, resulting in wrong values for the family, brand, and model fields.
Example of the Issue:
User-Agent String:
Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5x build/mtc19t applewebkit/537.36 (KHTML, like Gecko) Chrome/51.0.2702.81 Mobile Safari/537.36
Current Output:
Expected Output (not sure that it should be exactly like this):
Steps to Reproduce:
Perhaps this instance of DeviceParser is responsible for this:
The text was updated successfully, but these errors were encountered: