aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-05-15 08:30:48 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-05-15 08:30:48 +0500
commitac714ae51b169c3a64041355b8d954a5adeaa5d8 (patch)
treee2c025f9fbb384d378b59d4d5b188f7f3e5f0b43 /core
parentb3c0964aa16905d911f619eb3f13b7dbed94e235 (diff)
downloadprosody-ac714ae51b169c3a64041355b8d954a5adeaa5d8.tar.gz
prosody-ac714ae51b169c3a64041355b8d954a5adeaa5d8.zip
stanza_router: Removed a FIXME
Diffstat (limited to 'core')
-rw-r--r--core/stanza_router.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index 963dffca..75b477b4 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -106,7 +106,6 @@ function core_process_stanza(origin, stanza)
return; -- FIXME what should we do here?
end]] -- FIXME
- -- FIXME do stanzas not of jabber:client get handled by components?
if (origin.type == "s2sin" or origin.type == "c2s" or origin.type == "component") and (not xmlns or xmlns == "jabber:server" or xmlns == "jabber:client") then
local event_data = {origin=origin, stanza=stanza};
if fire_event(tostring(host or origin.host).."/"..stanza.name, event_data) then return; end