aboutsummaryrefslogtreecommitdiffstats
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
commit86ece22c8cb2ffc73d8b22f7aa8a92bdb582a5f3 (patch)
tree880077d1fe9d6b7eb4efba9a8ded126e46bad054
parent039aa3bc4e8d86505f4f8cba4e641a6229aba357 (diff)
downloadprosody-86ece22c8cb2ffc73d8b22f7aa8a92bdb582a5f3.tar.gz
prosody-86ece22c8cb2ffc73d8b22f7aa8a92bdb582a5f3.zip
mod_websocket: Fix read timeout handler (thanks mt)
-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);