Youn Mélois

Results 12 comments of Youn Mélois

Might as well edit your blog post.

One workaround I found is just using the number shortcuts to move the items, and not trigger whatever event that causes the crash.

Had the same issue then tried to run `appimage.sh` directly and found out it was missing the `librsvg-2.0` library. ``` [gtk/stderr] Please check the 'librsvg-2.0.pc' file is present in $PKG_CONFIG_PATH...

Hi @mikeybellissimo, on web when an http request is done, it's the browser that handles the cookie. The error you get from the console shouldn't be an issue, it's just...

I found a workaround on v3 where I needed to edit the `locale` value in the exported json (to the desired language, "fr" for me) and import it again. I'm...

Same issue with the flapak version 1.26.2 on fedora 37.

Hi @Alyxsqrd, I've tested locally on dart vm and flutter web your fix and requests `4.7.0` but I can't reproduce your issue. I'm scraping a website that does 302 redirections...

Or maybe you thought that this package does redirects by itself ? Unlike Python's requests library, this requests dart package does not yet support redirects, this matter was discussed in...

Can you test doing your request that does a 301/302 redirect and see the stored cookies with this: and tell me if the cookies are set or not ? ```dart...

if using `reqwest`, you can disable default features and enable `rustls-tls` instead to use rustls instead of openssl. ```toml reqwest = { version = "0.12.12", default-features = false, features =...