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 | 52a8bdb8f5a075f9de7f31b64522300a1e84ccfb (patch) | |
tree | 880077d1fe9d6b7eb4efba9a8ded126e46bad054 | |
parent | a96b73666121d0248d8bab7d93218a1e822fd87e (diff) | |
download | prosody-52a8bdb8f5a075f9de7f31b64522300a1e84ccfb.tar.gz prosody-52a8bdb8f5a075f9de7f31b64522300a1e84ccfb.zip |
mod_websocket: Fix read timeout handler (thanks mt)
-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); |