tools/ejabberd2prosody.lua

changeset 1784
b2bfd3b93da6
parent 1782
dd819e5bb0b8
child 2693
e60494fbf23f
--- a/tools/ejabberd2prosody.lua	Fri Sep 18 02:11:16 2009 +0500
+++ b/tools/ejabberd2prosody.lua	Fri Sep 18 05:16:26 2009 +0500
@@ -104,7 +104,11 @@
 		else error("Unknown ask type: "..ask); end
 		if subscription ~= "both" and subscription ~= "from" and subscription ~= "to" and subscription ~= "none" then error(subscription) end
 		local item = {name = name, ask = ask, subscription = subscription, groups = {}};
-		for _, g in ipairs(groups) do item.groups[g] = true; end
+		for _, g in ipairs(groups) do
+			if type(g) == "string" then
+				item.groups[g] = true;
+			end
+		end
 		roster(node, host, contact, item);
 	end;
 	private_storage = function(tuple)

mercurial