aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-04-06 14:50:34 +0200
committerKim Alvefur <zash@zash.se>2016-04-06 14:50:34 +0200
commit26261c7a51d04fa39653c75c84b7e0566299d934 (patch)
treecd0b43a82194a0ef7608dc95c0bfe129d63df0af /plugins
parent888df39003d093377dac8e3a0cba7670d996bc07 (diff)
parent52a8bdb8f5a075f9de7f31b64522300a1e84ccfb (diff)
downloadprosody-26261c7a51d04fa39653c75c84b7e0566299d934.tar.gz
prosody-26261c7a51d04fa39653c75c84b7e0566299d934.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins')
-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);