diff options
author | Kim Alvefur <zash@zash.se> | 2016-03-18 00:08:58 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-03-18 00:08:58 +0100 |
commit | 401fde4ef607e993432c50ee2b23e6b34a5746ea (patch) | |
tree | d187e41d01f81f41766abe3c0a730dde7b8c029f /plugins/mod_websocket.lua | |
parent | 2e443086a9b85b2b39b6d1b15c1a36c3894eaa2e (diff) | |
parent | 6a52a3feac921cd4263de3771a8984955f6c6bda (diff) | |
download | prosody-401fde4ef607e993432c50ee2b23e6b34a5746ea.tar.gz prosody-401fde4ef607e993432c50ee2b23e6b34a5746ea.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_websocket.lua')
-rw-r--r-- | plugins/mod_websocket.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua index 418cd846..274e587a 100644 --- a/plugins/mod_websocket.lua +++ b/plugins/mod_websocket.lua @@ -275,7 +275,7 @@ function handle_request(event) attr["xmlns:stream"] = attr["xmlns:stream"] or xmlns_streams; end return stanza; - end); + end, -1000); add_filter(session, "bytes/out", function(data) return build_frame({ FIN = true, opcode = 0x01, data = tostring(data)}); |