mod_pep: Allow storage of urn:xmpp:avatar:data node (payload only with base64 data)

Sat, 05 Dec 2009 09:43:53 -0800

author
Paul Aurich <paul@darkrain42.org>
date
Sat, 05 Dec 2009 09:43:53 -0800
changeset 2328
814eaba0c777
parent 2325
265441f2ad48
child 2329
5839f303addf

mod_pep: Allow storage of urn:xmpp:avatar:data node (payload only with base64 data)

plugins/mod_pep.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_pep.lua	Sat Dec 05 13:34:45 2009 +0000
+++ b/plugins/mod_pep.lua	Sat Dec 05 09:43:53 2009 -0800
@@ -39,7 +39,7 @@
 
 local function publish(session, node, item)
 	item.attr.xmlns = nil;
-	local disable = #item.tags ~= 1 or #item.tags[1].tags == 0;
+	local disable = #item.tags ~= 1 or #item.tags[1] == 0;
 	if #item.tags == 0 then item.name = "retract"; end
 	local bare = session.username..'@'..session.host;
 	local stanza = st.message({from=bare, type='headline'})

mercurial