diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-01 18:56:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-01 18:56:26 +0200 |
commit | 72ec06240f97cca6d2dfdb73ac721c6dbdb86193 (patch) | |
tree | e330fbc799b5c7d726a2e13091c709614d9de3dd | |
parent | fb2aae4316ebc9e785291926fde0560f74b87cea (diff) | |
download | prosody-72ec06240f97cca6d2dfdb73ac721c6dbdb86193.tar.gz prosody-72ec06240f97cca6d2dfdb73ac721c6dbdb86193.zip |
mod_bosh: Skip sending stanzas removed out by filters (fixes #657)
-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 840de725..032b20a8 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -279,6 +279,7 @@ function stream_callbacks.streamopened(context, attr) end s = filter("stanzas/out", s); --log("debug", "Sending BOSH data: %s", tostring(s)); + if not s then return true end t_insert(session.send_buffer, tostring(s)); local oldest_request = r[1]; |