Marcos Pulido

Results 2 comments of Marcos Pulido

@dangreen I have the following userAgent returning from a 7th Gen iPad with Safari 15.6 running: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6,2 Mobile/15E148 Safari/604.1`...

I manually added the optional group `( Mobile\/\w{5,6})? ` in the Safari part of the regex to temporarily fix detection. This is the full part: `(Version\/(14\.1|14\.([2-9]|\d{2,})|(1[5-9]|[2-9]\d|\d{3,})\.\d+|15\.0|15\.([1-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([.,]\d+|)( Mobile\/\w{5,6})? Safari\/)` I don't...