From 7a4e9c758eb9b171943377eff28d900e2f2ccba8 Mon Sep 17 00:00:00 2001
From: Matthew Wild <mwild1@gmail.com>
Date: Sat, 16 May 2009 20:19:15 +0100
Subject: stanza_router: Remove FIXME and replace with meaningful comment

---
 core/stanza_router.lua | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'core')

diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index 6eb04ae2..44712fa7 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -47,7 +47,9 @@ local fire_event = require "core.eventmanager2".fire_event;
 function core_process_stanza(origin, stanza)
 	(origin.log or log)("debug", "Received[%s]: %s", origin.type, stanza:top_tag())
 
-	if not stanza.attr.xmlns then stanza.attr.xmlns = "jabber:client"; end -- FIXME Hack. This should be removed when we fix namespace handling.
+	-- Currently we guarantee every stanza to have an xmlns, should we keep this rule?
+	if not stanza.attr.xmlns then stanza.attr.xmlns = "jabber:client"; end
+	
 	-- TODO verify validity of stanza (as well as JID validity)
 	if stanza.attr.type == "error" and #stanza.tags == 0 then return; end -- TODO invalid stanza, log
 	if stanza.name == "iq" then
-- 
cgit v1.2.3