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
var isChrome = !!window.chrome && !!window.chrome.webstore;
An object "window.chrome.webstore" is returning "undefined" from a new Chrome version 71.0.3578.80
In "older" versions there was "Object" returned.
That will affect browser detection mentioned before, because is it returning "false" now in a new Chrome version.
Firstly a thought that Chrome cookie support has been changed. But after debugging I discovered this not working detection. Look at this: Chromium bug report
I hope it helps.
Vaclav
The text was updated successfully, but these errors were encountered:
Hi,
About this browser detection:
var isChrome = !!window.chrome && !!window.chrome.webstore;
An object "window.chrome.webstore" is returning "undefined" from a new Chrome version 71.0.3578.80
In "older" versions there was "Object" returned.
That will affect browser detection mentioned before, because is it returning "false" now in a new Chrome version.
Firstly a thought that Chrome cookie support has been changed. But after debugging I discovered this not working detection. Look at this: Chromium bug report
I hope it helps.
Vaclav
The text was updated successfully, but these errors were encountered: