From 8a4ca5678e073eaca62a9f75427fdb832ecfe19f Mon Sep 17 00:00:00 2001 From: Philippe Thomassigny Date: Mon, 3 Aug 2020 15:12:09 -0500 Subject: [PATCH] Bot UA can also be a mobile --- system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system.go b/system.go index 60477a9..ec4f39d 100644 --- a/system.go +++ b/system.go @@ -113,7 +113,7 @@ func (u *UserAgent) maybeBot(ua string) bool { // Bots now can also identify as MOBILE device !! u.DeviceType = DeviceComputer if strings.Contains(ua, "mobile") { - u.DeviceType = DeviceMobile + u.DeviceType = DevicePhone } return true }