diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-05-16 23:50:08 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-05-16 23:50:08 +0100 |
commit | fb374134fdaca725bf31299e879c79877b597105 (patch) | |
tree | 8cba4635246c19cb8ca893a69d456539ab99a920 /plugins/mod_websocket.lua | |
parent | 8b1ed4faaefdcf2268a2f10849fca891cf79716f (diff) | |
parent | 9ddd7d489e083c6cec5741bb9fdd359bed29b052 (diff) | |
download | prosody-fb374134fdaca725bf31299e879c79877b597105.tar.gz prosody-fb374134fdaca725bf31299e879c79877b597105.zip |
Merge 0.10 -> trunk
This commit intentionally drops changes from c2b99fa134b3
and 8da11142fabf which are based on older MUC code.
Diffstat (limited to 'plugins/mod_websocket.lua')
-rw-r--r-- | plugins/mod_websocket.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua index 4f43cb7b..d301088e 100644 --- a/plugins/mod_websocket.lua +++ b/plugins/mod_websocket.lua @@ -261,6 +261,7 @@ function handle_request(event) session.ip = request.ip; session.secure = consider_websocket_secure or session.secure; + session.websocket_request = request; session.open_stream = session_open_stream; session.close = session_close; |