Jiří Zdvomka
Jiří Zdvomka
I'm facing basically the same problem. It might be related to https://github.com/vapor/jwt-kit/issues/26 and https://bugs.swift.org/browse/SR-12424.
I managed to isolate and reproduce the error. [Here's the repository](https://github.com/jstorm31/jwt-error-test). I get this error when running on CLI: ``` Fatal error: FCM Unable to generate JWT: JWTKit error: signing...
Přidávám se k prosbě o vytvoření stránky se statusem služby. Možná by se hodil i API endpoint pro strojový přístup (např. zobrazení alertu na webu služby, že je brána nedostupná)....
Psal jsem na email podpory a došlo k výpadku elektřiny v datovém centru, takže platební brána je nedostupná. Bylo mi řečeno, že do půl hodiny by mohla být brána zase...
@zhuangya workaround works, but only for 1 form submit. Even if a function is passed to `onloadCallback`, repeated form submit does not trigger `verifyCallback`.
Oh, I overlooked the `processRequest*` functions. Thank you! 🙌
I tested this again today, and `processRequest` seems to work fine for me with version `1.4.0` ```ts // GET /test router.get('/test', processRequest( query: z.object({ limit: z.number().min(0).optional().default(10), }) )), (req, res)...
Oh I see, you're right, the type is still `number | undefined`. ☝️
I started getting this error too with `@react-pdf/[email protected]`. Edit: upgrading to version 4.0.0 didn't help. Edit 2: I was rendering multiple PDFs with `Promise.all`. Generating them sequentially in `for...of` loop...