aboutsummaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2014-11-18 17:40:37 +0000
committerMatthew Wild <mwild1@gmail.com>2014-11-18 17:40:37 +0000
commita7d88ea2334bf18857b50cf7032ec3a3a79762fa (patch)
tree9c490dd19c4a884c3171493867507c59b8eb11ef /net/http
parent0643a6bde5cf0e1d9e24023919252a8d2085316a (diff)
downloadprosody-a7d88ea2334bf18857b50cf7032ec3a3a79762fa.tar.gz
prosody-a7d88ea2334bf18857b50cf7032ec3a3a79762fa.zip
net.http.parser: Fix whitespace/indentation
Diffstat (limited to 'net/http')
-rw-r--r--net/http/parser.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua
index 056d4b60..6d7187da 100644
--- a/net/http/parser.lua
+++ b/net/http/parser.lua
@@ -140,11 +140,11 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
break;
end
elseif len and #buf >= len then
- if packet.code == 101 then
- packet.body, buf = buf, ""
- else
- packet.body, buf = buf:sub(1, len), buf:sub(len + 1);
- end
+ if packet.code == 101 then
+ packet.body, buf = buf, "";
+ else
+ packet.body, buf = buf:sub(1, len), buf:sub(len + 1);
+ end
state = nil; success_cb(packet);
else
break;