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
An array ie {values:[10, null, null, null] } passed through the bridge with JSArray values = call.getArray("values"); returned values = [10, null, "...", "..."]
Expected Behavior
it should returned : values = [10, null, null, null]
Code Reproduction
An app to reproduce the issue is given https://github.com/jepiqueau/capacitor-sqlite-test.git this is impacting the @capacitor-community/sqlite plugin issue#125 a temporary fix has been provided on the plugin itself.
the Error is coming from the android native-bridge.js file where:
@jcesaremobile Normally I do not do it but I still see the status need reproduction and I gave a link to a demonstrating app 3 days ago if the status where move to need reply I will not have done it. Sorry for this
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Capacitor, please create a new issue and ensure the template is fully filled out.
Bug Report
Capacitor Version
Platform(s)
Current Behavior
An array ie
{values:[10, null, null, null] }
passed through the bridge with JSArray values = call.getArray("values"); returnedvalues = [10, null, "...", "..."]
Expected Behavior
it should returned :
values = [10, null, null, null]
Code Reproduction
An app to reproduce the issue is given
https://github.com/jepiqueau/capacitor-sqlite-test.git
this is impacting the@capacitor-community/sqlite
plugin issue#125 a temporary fix has been provided on the plugin itself.the Error is coming from the android
native-bridge.js
file where:and could be replaced by as proposed by @chriswep
Other Technical Details
npm --version
output: 7.6.0node --version
output: v14.15.4pod --version
output (iOS issues only):Additional Context
see #4798 from @chriswep
The text was updated successfully, but these errors were encountered: