Rob Ede

Results 360 comments of Rob Ede

I'm certain this has come up before. The problem here is that serde_qs is not behaving in a spec compliant way here. `text&number=32` should not produce `text: None`.

Found a reasonable workaround for now. ```rust /// Swallows de-serialization errors. #[derive(Debug)] struct Opt(Option); impl Opt { pub fn into_inner(self) -> Option { self.0 } } impl> de::Deserialize>(d: D) ->...

Lemme have a think about this. There's a definite limitation in `serde_urlencoded` here; but I don't think simply replacing it with `serde_qs` a good solution.

> I think your solution is pretty neat but do you think this kind of problem should be handled by the user/developer using actix-web instead of having actix-web handle it...

Slightly less involved workaround: ```rust pub fn deserialize_option_ignore_error, D: de::Deserializer

Using this code (stripped out the Settings parts): ```rust use actix_multipart::Multipart; use actix_web::{ get, middleware::Logger, post, App, HttpResponse, HttpServer, Responder, Result as ActixResult, }; // For details on the available...

Yes, I have seen similar reports but will prioritise a fix for this. Can you point me to the code in Meilisearch that would handle this request.

I've been able to get the extension installed with `electron-devtools-installer` and `installExtension('elgalmkoelokbchhkhacckoklkejnhcd')` inside the `app.on('ready', cb)` callback. (I'm using @ngtools/webpack to compile my app. While the extension is visible, nothing...

I think it's similar to the dedupe idea above, but SQL has a function called `coalesce` which simply takes the first non-null value out of a list of columns. It...

``` Jan 23 21:10:23.927 ERRO error: Status code 404 Not Found for URI https://raw.githubusercontent.com/pedrocr/imagepipe/HEAD/../rawloader/Cargo.toml, path: /repo/github/pedrocr/imagepipe Jan 23 21:10:23.927 INFO time: 219ms, status: 200 OK, path: /repo/github/pedrocr/imagepipe ```