# HG changeset patch # User Waqas Hussain # Date 1246263309 -18000 # Node ID 19598161ae223edf6012021fe4c43c38db5fe82b # Parent 9c6c7aa5dc6036ad3d9d3bb582c3134596696fb4 stanza_router: Don't fire preprocessing events if stanza is not from full JID diff -r 9c6c7aa5dc60 -r 19598161ae22 core/stanza_router.lua --- a/core/stanza_router.lua Sun Jun 28 22:29:17 2009 +0500 +++ b/core/stanza_router.lua Mon Jun 29 13:15:09 2009 +0500 @@ -139,7 +139,7 @@ end local event_data = {origin=origin, stanza=stanza}; - if origin.full_jid then -- c2s connection + if origin.full_jid == stanza.attr.from then -- c2s connection if hosts[origin.host].events.fire_event('pre-'..stanza.name..to_type, event_data) then return; end -- do preprocessing end local h = hosts[to_bare] or hosts[host or origin.host];