mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.websocket: Fix log call to pass data via format string instead of concatenation
This commit is contained in:
parent
75bfec7731
commit
2fb3c3041d
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ function websocket_listeners.onincoming(conn, buffer, err) -- luacheck: ignore 2
|
||||||
frame.MASK = true; -- RFC 6455 6.1.5: If the data is being sent by the client, the frame(s) MUST be masked
|
frame.MASK = true; -- RFC 6455 6.1.5: If the data is being sent by the client, the frame(s) MUST be masked
|
||||||
conn:write(frames.build(frame));
|
conn:write(frames.build(frame));
|
||||||
elseif frame.opcode == 0xA then -- Pong frame
|
elseif frame.opcode == 0xA then -- Pong frame
|
||||||
log("debug", "Received unexpected pong frame: " .. tostring(frame.data));
|
log("debug", "Received unexpected pong frame: %s", frame.data);
|
||||||
else
|
else
|
||||||
return fail(s, 1002, "Reserved opcode");
|
return fail(s, 1002, "Reserved opcode");
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue