Bauxitedev
Bauxitedev
Sound seems to be working fine on my New 3ds XL, I just tested it ... maybe you haven't installed `dsp1` on your 3DS? (it's required for homebrew applications to...
Try disabling `Compress` on the import settings of your .dae and re-generate the MeshLibrary. That did the trick for me.
Also, in case the previous solution doesn't work, make sure you're on a recent nightly version. I was on `nightly-2023-06-24` and I was confused why `thiserror` wasn't compiling.
I see. For anyone else looking for async support, this is the workaround I managed to come up with. `file` is a `tokio::fs::File`. ```rust let std_file = file.try_clone().await?.into_std().await; let imgsize...
Getting the exact same issue here. My login route is `/accounts/login` and the flash cookie does not seem to be cleared properly, so the flash message stays there forever. It's...
Update: I've found a consistent workaround for the problem, by manually clearing the cookie: ```rust async fn your_route_here( cookies: Cookies, flashes: IncomingFlashes, ) -> impl IntoResponse { //TODO use `flashes`...
@davidpdrsn If I don't explicitly add the `CookieManagerLayer` to my layer stack, I get this error... `Can't extract cookies. Is CookieManagerLayer enabled?` ...in the `your_route_here` I defined above: https://github.com/davidpdrsn/axum-flash/issues/4#issuecomment-1170012587. Even...
@davidpdrsn Why did you close this issue?
@ssendev Thank you, that turned out to be the issue! `axum-flash` 0.4.0 uses `tower-cookies` 0.6.0, even though 0.7.0 is available. I'll update my workaround.