Johan Eliasson

Results 157 comments of Johan Eliasson

I've seen this bug with some SMTP vendors. Could be related to this: https://github.com/nodemailer/nodemailer/issues/165#issuecomment-20733858

@joshmedeski Can you also try to set `SMTP_SECURE: false`?

Google will most probably add backup/restore functionality in the future. But for now, this is the best we got.

@shyndman This one: https://github.com/nhost/nhost/blob/main/packages/hasura-auth-js/src/hasura-auth-api.ts#L149

Sure, maybe you could help us here and create a PR?

We had a similar issue with the nhost-js-sdk. This was our solution there: https://github.com/nhost/nhost-js-sdk/blob/master/src/Auth.ts#L639-L650

We don't sync refresh token request across tabs. You're probably experience a race condition. How can we solve this? One way would allow refresh tokens to be active for a...

That could work. Or a simple boolean flag indicating if a refresh token request is in transit or not?

Ah now I understand the problem better. Each tab have a separate JWT token (in memory per tab) but they share the refresh token via localStorage. How many tabs do...

I'm able to have multiple tabs open at the same time without having this issue. The only thing I can think about causing this issue would be some kind of...