Commit a86b2a1f9bf2779bbff6aa9f1fb2d9c8a2786708

Thomas de Grivel 2024-08-12T12:40:46

fix http response

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/lib/kc3/0.1/http/response.kc3 b/lib/kc3/0.1/http/response.kc3
index ac9b813..ffcc4da 100644
--- a/lib/kc3/0.1/http/response.kc3
+++ b/lib/kc3/0.1/http/response.kc3
@@ -2,7 +2,7 @@ defmodule HTTP.Response do
 
   defstruct [protocol: "HTTP/1.1",
              code: (U16) 200,
-             message: "OK",
+             message: "",
              headers: [{"Content-Type", "text/html"}],
              body: ""]