System-> "is on mobile device" Is not triggered on iOS 13.2.3(latest iOS)
If I Invert the condition the actions are executed, meaning that latest iOS is interpretted as not mobile
Tested with R275
Are you using an iPad?
If so, Safari on the new iPad OS deliberately pretends to be a macOS desktop device. As far as I'm aware there's no reliable way to identify it as an iPad.
yes, I am using an iPad
Develop games in your browser. Powerful, performant & highly capable.
How about this?:
stackoverflow.com/questions/58019463/how-to-detect-device-name-in-safari-on-ios-13-while-it-doesnt-show-the-correct
let isIOS = /iPad|iPhone|iPod/.test(navigator.platform) || navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)
let isIOS = /iPad|iPhone|iPod/.test(navigator.platform) ||
navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)