We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a800fd commit 993bc92Copy full SHA for 993bc92
1 file changed
lib/woothee/browser.py
@@ -79,6 +79,14 @@ def challenge_safari_chrome(ua, result):
79
util.update_version(result, chromeVersion)
80
return True
81
82
+ # GSA
83
+ obj = re.search('GSA/([.0-9]+)', ua)
84
+ if obj:
85
+ version = obj.group(1)
86
+ util.update_map(result, dataset.get('GSA'))
87
+ util.update_version(result, version)
88
+ return True
89
+
90
# Safari
91
obj = re.search('Version/([.0-9]+)', ua)
92
if obj:
0 commit comments