This is a (multiple allowed):
We using the Vue Awesome Swiper package in our Vue project.
No bugsnag errors.
We are getting consistent bug snags errors o.targetTouches is undefined which point to a line in the swiper library:
node_modules/swiper/dist/js/swiper.js:2623
touches.currentX = e.type === 'touchstart' ? e.targetTouches[0].pageX : e.pageX;

The best outcome here is that it's a type error which can be fixed to help suppress future warnings caused by the package.
Seeing same issue with direct use of Swiper v3.4.2 - TypeError 路 e.targetTouches is undefined:
ams.noSwipingClass))f.allowClick=!0;else if(!f.params.swipeHandler||N(e,f.params.swipeHandler)){var n=f.touches.currentX="touchstart"===e.type?e.targetTouches[0].pageX:e.pageX,i=f.touches.currentY="to
Firefox 62.0 for Android is also affected by this. Device: generic tablet.
https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/targetTouches#Browser_compatibility
Apparently targetTouches property is not supported on Safari.
Edit: Cannot reproduce the bug with browserStack, but all instances of this error reported with Bugsnag come from Safari 13.0.1
Having a similar issue with ios 13+.
undefined is not an object (evaluating 'targetTouches[0].pageX')
Would be great to see JSFiddle with the issue using core swiper.js (not some 3rd party Vue or React wrapper)
Would be great to see JSFiddle with the issue using core swiper.js (not some 3rd party Vue or React wrapper)
https://codepen.io/SpaceBeers/full/GRRgRME
I _think_ the issue is caused from starting swiping from outside swiper but I'm not 100% on this yet.
@versedi I have fixed the issue for iOS in #3259 but I wasn't able to replicate the issue because I don't have access to Firefox 62 or an Android tablet.