net.server_epoll: Fix traceback-causing typo

Caused "attempt to index a string value (local 'data')", but only if
keep_buffers is set to false, which is not the default.

Introduced in 917eca7be82b
This commit is contained in:
Kim Alvefur 2021-07-18 08:53:37 +02:00
parent a30d4e1518
commit 5b7eea90c4

View file

@ -504,7 +504,7 @@ function interface:onwritable()
buffer[i] = nil;
end
else
data.writebuffer = data:sub(partial+1);
self.writebuffer = data:sub(partial+1);
end
self:set(nil, true);
self:setwritetimeout();