Stefan Falk

Results 15 comments of Stefan Falk

@agronholm I can't promise anything, but what if I provided a PR?

Hi and thanks for the quick response! The problem with Docker here is cost. I want to keep cost down if possible. I think the cheapest solution would be using...

I don't know for sure yet but it's going to be in the tens of millions. Keeping it in memory is probably not feasable in this case. However, I figured...

@komura-c I've tried your suggestion, but none of the following seems to work: ```typescript async init() { this.logger.debug("Checking for token from redirect"); const credentials = await getRedirectResult(this.auth); this.idToken = await...

@jhades It's pretty complicated and I don't know where to start. It really depends on your setup but if you have a custom `authDomain` you want to pay https://firebase.google.com/docs/auth/web/redirect-best-practices a...

Joining the party ```none $ sequelize-cli --version Sequelize CLI [Node: 18.17.0, CLI: 6.6.1, ORM: 6.36.0] 6.6.1 ``` After downgrading `npm i -D [email protected]`, I am not able to run it...

@zohaibamir203 I'm now on `6.6.2` with the following `tsconfig.json`: ```json { "compilerOptions": { "target": "es2022", "module": "NodeNext", "moduleResolution": "NodeNext", "rootDir": "./src", "sourceMap": true, "outDir": "./dist", "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitAny":...

@Alex-Tsyganok Thank you for that quick fix! But I have to tell you that I felt the strong urge to wash my hands after that 😂

Thanks @avelad for the response. Not sure if that'll do in my case, however. I am sending a `Bearer ` with the `Authorization` header. The server will respond with HTTP...

@joeyparrish thank you! :) If I get that right then I should be able to do somethign like this: ```typescript player.getNetworkingEngine()?.registerResponseFilter(async (req, res) => { if (res.status === 401) {...