Results 97 comments of Johan

this is the issue, ```js transport = await this.handshake( req._query.transport, req, (errorCode, errorContext) => this.abortRequest(res, errorCode, errorContext) ); if (!transport) { return; } ``` you can not await and use...

some light on this: https://github.com/uNetworking/uWebSockets.js/issues/907 https://github.com/kartikk221/hyper-express/issues/170

we already have see what is the issue on this, the new alien mode is not allowing you to access the getHeader function, so you should cache them for later...

pull request: https://github.com/socketio/engine.io/pull/681

Did you found the issue ? It is happening to me too , in dev works

> [@akshSekhon](https://github.com/akshSekhon) can you provide the full stack track and the compose version you are using? This issue occurs due to a JSON parsing error combined with the new Android...

This prevents updating to the latest version.

this patch resolve the issue: ```diff diff --git a/node_modules/@stripe/stripe-react-native/src/functions.ts b/node_modules/@stripe/stripe-react-native/src/functions.ts index e1cce56..652a99d 100644 --- a/node_modules/@stripe/stripe-react-native/src/functions.ts +++ b/node_modules/@stripe/stripe-react-native/src/functions.ts @@ -117,8 +117,9 @@ export const retrieveSetupIntent = async ( clientSecret: string ):...

The full changes appear due to code formatting, but the only change required to fix the issue is this one: ```diff - const { paymentIntent, error } = - Platform.OS...