aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_websocket.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-04-06 14:44:51 +0200
committerKim Alvefur <zash@zash.se>2016-04-06 14:44:51 +0200
commit52a8bdb8f5a075f9de7f31b64522300a1e84ccfb (patch)
tree880077d1fe9d6b7eb4efba9a8ded126e46bad054 /plugins/mod_websocket.lua
parenta96b73666121d0248d8bab7d93218a1e822fd87e (diff)
downloadprosody-52a8bdb8f5a075f9de7f31b64522300a1e84ccfb.tar.gz
prosody-52a8bdb8f5a075f9de7f31b64522300a1e84ccfb.zip
mod_websocket: Fix read timeout handler (thanks mt)
Diffstat (limited to 'plugins/mod_websocket.lua')
-rw-r--r--plugins/mod_websocket.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua
index 086eab62..a3f5318c 100644
--- a/plugins/mod_websocket.lua
+++ b/plugins/mod_websocket.lua
@@ -291,7 +291,10 @@ function handle_request(event)
end
local function keepalive(event)
- return conn:write(build_frame({ opcode = 0x9, }));
+ local session = event.session;
+ if session.open_stream == session_open_stream then
+ return session.conn:write(build_frame({ opcode = 0x9, }));
+ end
end
module:hook("c2s-read-timeout", keepalive, -0.9);