suncat2000 / MobileDetectBundle

Symfony 2/3/4 bundle for detect mobile devices, manage mobile view and redirect to the mobile and tablet version.
397 stars 153 forks source link

Detects iPad as isMobile() #103

Closed Beagon closed 7 years ago

Beagon commented 7 years ago

I'm not sure if this is correct behavior, but it seems when I use isMobile() it will also return true if it's on an iPad or other tablet. If this is normal behavior, how would I check for mobile phones only?

xabbuh commented 7 years ago

isMobile() && !isTablet() (pseudo code) should give you the expected result

Beagon commented 7 years ago

Thanks!