Skip to content

Commit

Permalink
Update http.lua
Browse files Browse the repository at this point in the history
looks like it should be here
  • Loading branch information
AMD-NICK authored Nov 13, 2023
1 parent 453a520 commit 9d07ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ local function receiveheaders(sock, headers)
-- unfold any folded values
while string.find(line, "^%s") do
value = value .. line
line = sock:receive()
line, err = sock:receive()
if err then return nil, err end
end
-- save pair in table
Expand Down

0 comments on commit 9d07ed5

Please sign in to comment.