Maurits van Riezen
Maurits van Riezen
This error happens whenever there is a request with a invalid HTTP verb. Any production server will receive many invalid requests and they shouldn't all throw errors. This buries real...
> But it looks a bit strange. So the question: is there are some reason to specify binary inside html file. Wouldn't be better to make an option to trunk...
The clippy errors seem unrelated to the changes
> I'm getting the same error using the sync version (with `rustls`): > > ``` > Invalid response: [426] 426 Failure reading network stream. > ``` > > The uploaded...
I updates to the latest version of both and the issue persists: ``` Version: 1.95.1 Release: 24307 Commit: 8798508b6fcf62248291cdf7a7e870bd84f7257d Date: 2024-11-02T15:11:43.867Z Electron: 32.2.1 ElectronBuildId: undefined Chromium: 128.0.6613.186 Node.js: 20.18.0 V8:...
PNG supports animations. You probably want to continue allowing uploads in PNG format
Checking if a PNG is animated is non-trivial. It's just a normal PNG file with some extra types of chunks. Any image processing library should be able to do it...
In Jinja `{-` removes whitespace from the ends of a statement. A textarea with `{- -}` inside it should just be formatted normally.
@itchyny I moved the doc update to the correct section
`first/0` having the same behavior as `.[0]` seems logical to me. The existence of `first`/`last`/`nth` seems a bit pointless anyways since you can just use `.[0]`, `.[-1]`, `.[n]` which are...