aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_private.lua
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-08-24 20:36:06 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-08-24 20:36:06 +0200
commit2dc6f58f0dee1a2e5eaaeecf1637a883225e0cd7 (patch)
tree8e302560413ab641ebc99e62d1cba929e8dab554 /plugins/mod_private.lua
parent0207fe0e1da8ff34d8247c50daa150e9e0928f00 (diff)
downloadprosody-2dc6f58f0dee1a2e5eaaeecf1637a883225e0cd7.tar.gz
prosody-2dc6f58f0dee1a2e5eaaeecf1637a883225e0cd7.zip
mod_private, mod_vcard: Use the usual comment on non-get received iqs.
Diffstat (limited to 'plugins/mod_private.lua')
-rw-r--r--plugins/mod_private.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_private.lua b/plugins/mod_private.lua
index 9375cf80..6046d490 100644
--- a/plugins/mod_private.lua
+++ b/plugins/mod_private.lua
@@ -32,7 +32,7 @@ module:hook("iq/self/jabber:iq:private:query", function(event)
origin.send(st.reply(stanza):add_child(query));
end
return true;
- else -- type == set
+ else -- stanza.attr.type == "set"
local data;
if #tag ~= 0 then
data = st.preserialize(tag);