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
Camera.js is erroring for me at coreGetScopes() function.
coreGetScopes()
Need to add the underscore to the object path to make it pull correctly. var s = scope.ScopeItem._;
var s = scope.ScopeItem._;
Could be some weird environment specific thing but I've just put it in a try catch for now.
scopes.forEach(scope => { try { var s = scope.ScopeItem; s.indexOf('') } catch { var s = scope.ScopeItem._; } if (s.indexOf('onvif://www.onvif.org/hardware/') === 0) { const hardware = s.split('/').pop(); this.deviceInformation.Hardware = hardware;
The text was updated successfully, but these errors were encountered:
Thanks for finding this. I'll look into it as soon as I can.
Sorry, something went wrong.
No branches or pull requests
Camera.js is erroring for me at
coreGetScopes()
function.Need to add the underscore to the object path to make it pull correctly.
var s = scope.ScopeItem._;
Could be some weird environment specific thing but I've just put it in a try catch for now.
The text was updated successfully, but these errors were encountered: