You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
performance.now() is not available on older Android devices. On my Android 4.2.2, this broke the app, because the Meteor objects were not initialized due to the exception. I recommend checking for the existence of performance.now before it is called and use new Date().getTime() as a fallback.
The text was updated successfully, but these errors were encountered:
This package is using
performance.now()
, I guess it is this line, but there maybe more:meteor-debug/lib/client/store.js
Line 55 in 7453323
performance.now()
is not available on older Android devices. On my Android 4.2.2, this broke the app, because the Meteor objects were not initialized due to the exception. I recommend checking for the existence ofperformance.now
before it is called and usenew Date().getTime()
as a fallback.The text was updated successfully, but these errors were encountered: