diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-08-01 00:39:54 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-08-01 00:39:54 +0100 |
commit | 41be7b556978dad20c01330335d2c584cb328017 (patch) | |
tree | a3b6b3457cbc7f79b01256bf26f8090982195036 | |
parent | d4d93a75bbf30b598c71f490f77262e9a4c79b2d (diff) | |
download | prosody-41be7b556978dad20c01330335d2c584cb328017.tar.gz prosody-41be7b556978dad20c01330335d2c584cb328017.zip |
mod_bosh: Remove troublesome return... continue processing of the streamopen after session creation (because since 16c7b510694b we no longer send an early response)
-rw-r--r-- | plugins/mod_bosh.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 66851133..f31db684 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -299,7 +299,6 @@ function stream_callbacks.streamopened(context, attr) return true; end request.sid = sid; - return; end local session = sessions[sid]; |