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
reconcile()
In library_idbfs.js's reconcile() function, the transaction may abort if (for example) a QuotaExceededError occurs.
library_idbfs.js
QuotaExceededError
However, since no abort/onabort handler is currently added, the callback will never be called in this case.
abort
onabort
callback
Expected behavior:
The callback passed-in to reconcile() is called with the error, even if the transaction aborts.
Version of emscripten/emsdk: 3.1.53
The text was updated successfully, but these errors were encountered:
transaction.onabort
Successfully merging a pull request may close this issue.
In
library_idbfs.js
'sreconcile()
function, the transaction may abort if (for example) aQuotaExceededError
occurs.However, since no
abort
/onabort
handler is currently added, thecallback
will never be called in this case.Expected behavior:
The
callback
passed-in toreconcile()
is called with the error, even if the transaction aborts.Version of emscripten/emsdk:
3.1.53
The text was updated successfully, but these errors were encountered: