OpenURL issue, doesn't open browser unless connected to wifi

I have 2 buttons in an app that trigger Application.OpenURL(“http://specialpage.com/api/”);

The thing is, it only occurs on a few android devices, it works fine on 3/4 the devices we’ve tested with, and all ios devices, and I can reproduce it simply by turning wifi on or off, on the devices affected…

The phone has an active call/data plan, I can surf the web and what not at the same time these buttons aren’t working, but these two buttons will not even open the browser without wifi being turned on…I was expecting if it couldn’t connect it would launch the browser regardless and show a page saying it couldn’t connect, but it simply ignores the button press…

Any ideas why this would happen? The urls start with “http://” and it works fine when wifi is on which is the weird issue…

So it turns out, in the new UI, the scrollrect component is buggy on high dpi devices…the note 4 was the worst and changing the drag threshold from 5 to 50 still didn’t help!!!

On the note 4 and a couple other devices with the problem, even on a tap that isn’t moving, the scroll rect overrides the onclick event. Which is how it should be if you’re actually scrolling, but on a few devices taps are being considered scrolling even with a drag threshold of 50…

ios didn’t have any problems on any devices with the same build as android, and 2/3 of the android devices we tested on android didn’t have the problem, but a handful did…

What does wifi status have to do with touch events though?