diff options
-rw-r--r-- | core/stanza_router.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 8eb6d4d1..e5603cae 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -15,7 +15,7 @@ local jid_split = jid.split; function core_process_stanza(origin, stanza) log("debug", "Received: "..tostring(stanza)) - -- TODO verify validity of stanza + -- TODO verify validity of stanza (as well as JID validity) local to = stanza.attr.to; stanza.attr.from = origin.full_jid -- quick fix to prevent impersonation |