diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-01-08 23:20:16 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-01-08 23:20:16 +0000 |
commit | a5cba5ec97bc5b589ef043b76b456ad66c01852c (patch) | |
tree | c8874018ccb30569e2a6b1514334032961e66939 /plugins | |
parent | 11d32c9f54d954caaed07e8580d114a1b7a653ed (diff) | |
download | prosody-a5cba5ec97bc5b589ef043b76b456ad66c01852c.tar.gz prosody-a5cba5ec97bc5b589ef043b76b456ad66c01852c.zip |
mod_bosh: Return true from send()
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_bosh.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index b9152c9f..a747f3cb 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -274,6 +274,7 @@ function stream_callbacks.streamopened(request, attr) t_insert(session.send_buffer, tostring(s)); log("debug", "There are now %d things in the send_buffer", #session.send_buffer); end + return true; end -- Send creation response |