BIGFIX (fuck it)

This commit is contained in:
xdrm-brackets 2018-05-02 22:36:59 +02:00
parent 9abf760e37
commit 4e0b13a031
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ func (r T) Send(w io.Writer) (int, error) {
headers = fmt.Sprintf("%s\r\n", headers)
/* (3) Build all */
raw := []byte(fmt.Sprintf("%s%s\r\n", responseLine, headers))
raw := []byte(fmt.Sprintf("%s%s", responseLine, headers))
/* (4) Write */
written, err := w.Write(raw)