# HG changeset patch # User Paul Aurich # Date 1260035033 28800 # Node ID b634741acbd0388e2ab8b8c20f84f8ddc52fba10 # Parent 511dfd88e14cfddcfffeaff381758c60f42af1f1 mod_pep: Allow storage of urn:xmpp:avatar:data node (payload only with base64 data) diff -r 511dfd88e14c -r b634741acbd0 plugins/mod_pep.lua --- a/plugins/mod_pep.lua Mon Nov 30 16:39:27 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'})