diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-07-08 23:42:54 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-07-08 23:42:54 +0100 |
commit | cba8a133e03378ef2b6b7138d648ed070da5f66c (patch) | |
tree | 59259a015ac2cc2378f78a33730431479bbc1ba8 | |
parent | be3a4082cff9d17f8fda7d173e31c1b78521b2ee (diff) | |
download | prosody-cba8a133e03378ef2b6b7138d648ed070da5f66c.tar.gz prosody-cba8a133e03378ef2b6b7138d648ed070da5f66c.zip |
mod_bosh: Only pass stanza to core_process_stanza if it wasn't dropped by filters
-rw-r--r-- | plugins/mod_bosh.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index b88cd969..e9506a83 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -361,7 +361,9 @@ function stream_callbacks.handlestanza(context, stanza) stanza.attr.xmlns = nil; end stanza = session.filter("stanzas/in", stanza); - core_process_stanza(session, stanza); + if stanza then + core_process_stanza(session, stanza); + end end end |