From 19761db983d1ec18ed0bf371967ff76c08b59a9a Mon Sep 17 00:00:00 2001 From: Patrick Stevens <3138005+Smaug123@users.noreply.github.com> Date: Mon, 21 Apr 2025 23:46:01 +0100 Subject: [PATCH] Fix treatment of Patch (#374) --- WoofWare.Myriad.Plugins/HttpClientGenerator.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WoofWare.Myriad.Plugins/HttpClientGenerator.fs b/WoofWare.Myriad.Plugins/HttpClientGenerator.fs index 0628d93..d984b5c 100644 --- a/WoofWare.Myriad.Plugins/HttpClientGenerator.fs +++ b/WoofWare.Myriad.Plugins/HttpClientGenerator.fs @@ -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"