diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-06 14:44:51 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-06 14:44:51 +0200 |
commit | 86ece22c8cb2ffc73d8b22f7aa8a92bdb582a5f3 (patch) | |
tree | 880077d1fe9d6b7eb4efba9a8ded126e46bad054 /plugins | |
parent | 039aa3bc4e8d86505f4f8cba4e641a6229aba357 (diff) | |
download | prosody-86ece22c8cb2ffc73d8b22f7aa8a92bdb582a5f3.tar.gz prosody-86ece22c8cb2ffc73d8b22f7aa8a92bdb582a5f3.zip |
mod_websocket: Fix read timeout handler (thanks mt)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_websocket.lua | 5 |
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); |