Martin Algesten
Martin Algesten
# Summary This is not a bug in ureq (or in rustls). native-tls could perhaps work, but also there we are getting problems – however that is outside ureq's domain...
Some websites do not end chunked encoding correctly. The spec says the end should be: ``` 0\r\n \r\n ``` However some sites stop short after `0\r\n`. Curl handles this case...
If charset is not enabled, `Response::into_string` uses `String::from_utf8_lossy` to convert the body `&[u8]` to a string. https://github.com/algesten/ureq/blob/cfaca317c61d6ba4307c67789b309adcdf940848/src/response.rs#L365 ```rust Ok(String::from_utf8_lossy(&buf).to_string()) ``` `from_utf8_lossy` returns a `Cow`. In those cases the original `&[u8]`...
I've been debugging an SPI problem for the last week, and in the end I ended up buying a logic analyzer to hunt the problem down. The problem seems to...
We haven't got an explicit MSRV, just "be conservative", but it probably is time to put one in place. [once_cell has bumped their MSRV](https://github.com/matklad/once_cell/issues/201) to 1.56 (and edition 2021), which...
I pulled this out of `core.js` (and added console.log) ``` //Pull the callback and set it false to not clobber id. if(typeof arguments[arguments.length-1]=='function'){ console.log('yes'); cb=arguments[arguments.length-1]; console.log(cb); arguments[arguments.length-1]=false; console.log(cb); } ```...
Hi! I've been testing out using the Demuxer directly using symphonia-core and symphonia-format-mkv. I'm quite used to dealing with demuxers and codecs, and using them works great! For my use...
Hi! Thanks for making this library! When using an mp4-file encoded by AWS Transcoder, we get an error reading it `avcc not found`. The problem is that `Avc1Box` expects the...