-
-
Notifications
You must be signed in to change notification settings - Fork 51
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
If the returned object resulting from a firebase function call contains an Array, the array returned by the plugin is null
.
For example:
const stripeServer = firebase().functions().httpsCallable("stripeServer")
let result = await stripeServer({ action, content });
Firebase function stripeServer returns:
{ associated_objects: [ { type: 'customer', id: 'cus_InjovAWnSWCAVE' } ],
created: 1639799535,
expires: 1639803135,
livemode: false,
}
...then the returned result is
{ associated_objects: null,
created: 1639799535,
expires: 1639803135,
livemode: false,
}
Android, using:
"@nativescript/firebase-core": "^1.0.0-alpha.25",
"@nativescript/firebase-functions": "^1.0.0-alpha.25",
triniwiz
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working