mod_bosh: Only pass stanza to core_process_stanza if it wasn't dropped by filters

vault/0.11
Matthew Wild 13 years ago
parent 07891fe7e9
commit 486d601ff5
  1. 4
      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

Loading…
Cancel
Save