In
|
ls = !inNode && window.localStorage, |
ls can be null. So then the next line throws an exception like
Cannot read property 'andlogKey' of null
We are seeing this in Android devices.
This line may need to be something like
debugKey = (ls && ls.andlogKey) || 'debug',
Thanks
In
bows/bows.js
Line 29 in 334d8a6
lscan be null. So then the next line throws an exception likeCannot read property 'andlogKey' of nullWe are seeing this in Android devices.
This line may need to be something like
Thanks