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
Calling secureStorage.create() in browser (ionic serve) the returned Promise is never resolved/rejected when run in browser.
secureStorage.create()
ionic serve
I'm using the following code:
this.platform.ready() .then(() => { this.secureStorage.create('test') .then( data => console.log(data), error => console.log(error)) });
None of the callbacks gets ever called. The same works perfectly for all the other plugins I'm using.
Anything I'm missing here?
The text was updated successfully, but these errors were encountered:
Sorry, the documentation is wrong/outdated. The plugin doesn't support the browser platform.
Sorry, something went wrong.
2869c64
@ihadeed Thanks for your answer. But in this case should't the Promise be rejected with a meaningful reason?
fix(core): return errors from CordovaCheck decorators
fd0a2e9
fixes comment mentioned in #1268
Just pushed a commit to fix that :)
@ihadeed Awesome, thx :)
No branches or pull requests
Calling
secureStorage.create()
in browser (ionic serve
) the returned Promise is never resolved/rejected when run in browser.I'm using the following code:
None of the callbacks gets ever called. The same works perfectly for all the other plugins I'm using.
Anything I'm missing here?
The text was updated successfully, but these errors were encountered: