diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-08-24 20:36:06 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-08-24 20:36:06 +0200 |
commit | 2dc6f58f0dee1a2e5eaaeecf1637a883225e0cd7 (patch) | |
tree | 8e302560413ab641ebc99e62d1cba929e8dab554 /plugins | |
parent | 0207fe0e1da8ff34d8247c50daa150e9e0928f00 (diff) | |
download | prosody-2dc6f58f0dee1a2e5eaaeecf1637a883225e0cd7.tar.gz prosody-2dc6f58f0dee1a2e5eaaeecf1637a883225e0cd7.zip |
mod_private, mod_vcard: Use the usual comment on non-get received iqs.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_private.lua | 2 | ||||
-rw-r--r-- | plugins/mod_vcard.lua | 2 |
2 files changed, 2 insertions, 2 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); diff --git a/plugins/mod_vcard.lua b/plugins/mod_vcard.lua index bda039a3..b1a4c6e8 100644 --- a/plugins/mod_vcard.lua +++ b/plugins/mod_vcard.lua @@ -29,7 +29,7 @@ local function handle_vcard(event) else session.send(st.error_reply(stanza, "cancel", "item-not-found")); end - else + else -- stanza.attr.type == "set" if not to then if vcards:set(session.username, st.preserialize(stanza.tags[1])) then session.send(st.reply(stanza)); |