Roy Jacobs

Results 72 comments of Roy Jacobs

That does make sense. Are there any other of these API glitches you're running into?

Ah, I've tested it now with `cargo test -- --test-threads=1` and that works so it's probably a concurrency issue. I guess the MacOS code needs a RwLock. I'll see if...

Fair enough, the PR was a bit premature :) According to https://developer.apple.com/documentation/appkit/nspasteboard there is a general pasteboard that is shared by all applications. I'm not sure how the release works...

I meant I was wondering that maybe `drop`ping the `OSXClipboardContext` struct is releasing the pasteboard for my entire running application instead of just for that `OSXClipboardContext` instance. But, again, that's...

I've rebased wasm-snip on top of Walrus 0.19.0 and that seems to work. However, I'm not sure if this project is currently active or not, since this issue has been...

@rwinch I can confirm that the `Mono` returned by `generateToken` method in the repository is never subscribed to (and therefore `createCsrfToken` is never called). I was under the assumption that...

What could perhaps work if one could configure a CSRF URL which you can GET and which returns an empty response, apart from whatever is needed by CSRF. In this...

Ah, I was unaware that this URL could already be configured. I didn't see anything in `CsrfSpec` that would allow me to set this. Anyway, for now I will create...

Sorry, that's what I meant as well: The workaround is fine for now. If in the future the behaviour is changed to make this functionality a bit more intuitive (well...at...

The workaround works fine, even if you don't explicitly set the cookie yourself. Just subscribing is enough, i.e. (Kotlin, sorry): ``` csrfToken.doOnSuccess { }.then(webFilterChain.filter(serverWebExchange)) ```