While setting HTTTP.contentLength the method DELETE is overwritten with POST
due to this coding:
curl.d (line 3024)
// Force post if necessary
if (p.method != Method.put && p.method != Method.post &&
p.method != Method.patch)
p.method = Method.post;
This seems wrong?
Comment #1 by robert.schadek — 2024-12-01T16:26:35Z