Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion extension/script/common/socket.lua
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,13 @@ return function (param)
elseif t.mode == "listen" then
server = assert(net.listen(t.protocol, t.address, t.port))
function server:on_accepted(new_s)
return init_session(new_s)
local ok = init_session(new_s)
assert(ok)
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok isn't always true; you can't assert that it is.

if writebuf ~= '' then
new_s:write(writebuf)
writebuf = ''
end
return ok
end
else
return
Expand Down