Improve bot detection

This commit is contained in:
R. Miles McCain 2020-04-17 13:43:42 -04:00
parent 868cfd3cb9
commit 654b628fc9
No known key found for this signature in database
GPG Key ID: 91CB47BDDF2671A5

View File

@ -74,7 +74,7 @@ def ingress_request(
device_type = "OTHER" device_type = "OTHER"
if ua.is_mobile: if ua.is_mobile:
device_type = "PHONE" device_type = "PHONE"
elif ua.is_bot or ua.browser.family == "Googlebot": elif ua.is_bot or (ua.browser.family or "").strip() == "Googlebot":
device_type = "ROBOT" device_type = "ROBOT"
elif ua.is_tablet: elif ua.is_tablet:
device_type = "TABLET" device_type = "TABLET"