Fix treatment of Patch (#374)

This commit is contained in:
Patrick Stevens
2025-04-21 23:46:01 +01:00
committed by GitHub
parent f30a73fd4f
commit 19761db983

View File

@@ -70,7 +70,7 @@ module internal HttpClientGenerator =
if m = HttpMethod.Get then "Get"
elif m = HttpMethod.Post then "Post"
elif m = HttpMethod.Delete then "Delete"
elif m = HttpMethod.Patch then "Post"
elif m = HttpMethod.Patch then "Patch"
elif m = HttpMethod.Options then "Options"
elif m = HttpMethod.Head then "Head"
elif m = HttpMethod.Put then "Put"