You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
andre reported this on 2016-04-25T15:27:11Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=15953
Description
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?The text was updated successfully, but these errors were encountered: