mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
a30d4e1518
commit
5b7eea90c4
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue