switch mobile detection to look for "Android"
This commit is contained in:
parent
40d6f062f7
commit
978fb61cdf
|
@ -1,6 +1,6 @@
|
||||||
module MobileDetection
|
module MobileDetection
|
||||||
def self.mobile_device?(user_agent)
|
def self.mobile_device?(user_agent)
|
||||||
user_agent =~ /Mobile|webOS|Nexus (5|6|7)/ && !(user_agent =~ /iPad/)
|
user_agent =~ /Mobile|Android|webOS/ && !(user_agent =~ /iPad|Nexus (9|10)/)
|
||||||
end
|
end
|
||||||
|
|
||||||
# we need this as a reusable chunk that is called from the cache
|
# we need this as a reusable chunk that is called from the cache
|
||||||
|
|
|
@ -37,7 +37,7 @@ class LogAnalyzer
|
||||||
end
|
end
|
||||||
|
|
||||||
def is_mobile?
|
def is_mobile?
|
||||||
user_agent =~ /Mobile|webOS|Nexus (5|6|7)/ && !(user_agent =~ /iPad/)
|
user_agent =~ /Mobile|Android|webOS/ && !(user_agent =~ /iPad|Nexus (7|10)/)
|
||||||
end
|
end
|
||||||
|
|
||||||
def parsed_time
|
def parsed_time
|
||||||
|
|
Loading…
Reference in New Issue