summaryrefslogtreecommitdiffhomepage
path: root/libs/web/luasrc/http/protocol.lua
diff options
context:
space:
mode:
Diffstat (limited to 'libs/web/luasrc/http/protocol.lua')
-rw-r--r--libs/web/luasrc/http/protocol.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/http/protocol.lua b/libs/web/luasrc/http/protocol.lua
index 970983d5b5..6901291b9a 100644
--- a/libs/web/luasrc/http/protocol.lua
+++ b/libs/web/luasrc/http/protocol.lua
@@ -517,7 +517,7 @@ function _linereader( obj, bufsz )
__read = function() return obj:sub( _pos, _pos + bufsz - #_buf - 1 ) end
-- object implements a receive() or read() function
- elseif type(obj) == "userdata" and ( type(obj.receive) == "function" or type(obj.read) == "function" ) then
+ elseif (type(obj) == "userdata" or type(obj) == "table") and ( type(obj.receive) == "function" or type(obj.read) == "function" ) then
if type(obj.read) == "function" then
__read = function() return obj:read( bufsz - #_buf ) end