We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the wild, on line 913 of ocLazyLoad.js, a few of our users hit the following error:
null is not an object (evaluating 'v[1]')
The relevant line of code is:
var iOSVersion = parseFloat([parseInt(v[1], 10), parseInt(v[2], 10), parseInt(v[3] || 0, 10)].join('.'));
We've seen this with the following user agents:
It seems like window.navigator.platform is reporting that this device is an iOS device, but window.navigator.appVersion is not in the expected format.
window.navigator.platform
window.navigator.appVersion
The text was updated successfully, but these errors were encountered:
fix(css-load): fix useCssLoadPatch determination when encountering un…
2bfe646
…known UA strings Requires rebuild post-merge. Fixes ocombe#416
@ocombe / @nbrustein - Made a quick inline-PR to handle a fall-through scenario for when user-agent strings + platform combinations are unknown. #417
Sorry, something went wrong.
No branches or pull requests
In the wild, on line 913 of ocLazyLoad.js, a few of our users hit the following error:
The relevant line of code is:
We've seen this with the following user agents:
It seems like
window.navigator.platform
is reporting that this device is an iOS device, butwindow.navigator.appVersion
is not in the expected format.The text was updated successfully, but these errors were encountered: