diff options
author | Kim Alvefur <zash@zash.se> | 2019-12-23 21:55:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-12-23 21:55:41 +0100 |
commit | e660a65d2856bbc5c20c41c8b0d4a722b187880c (patch) | |
tree | 4b18d9bfe5f68ba5d7c47c5073f38a55812567f2 | |
parent | dd7a972108d1632d28e08fd92a5aa8f728eb5943 (diff) | |
download | prosody-e660a65d2856bbc5c20c41c8b0d4a722b187880c.tar.gz prosody-e660a65d2856bbc5c20c41c8b0d4a722b187880c.zip |
mod_vcard_legacy: Ignore an unused variable [luacheck]
-rw-r--r-- | plugins/mod_vcard_legacy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_vcard_legacy.lua b/plugins/mod_vcard_legacy.lua index 6bae3ee5..a6ff47d0 100644 --- a/plugins/mod_vcard_legacy.lua +++ b/plugins/mod_vcard_legacy.lua @@ -38,7 +38,7 @@ local simple_map = { module:hook("iq-get/bare/vcard-temp:vCard", function (event) local origin, stanza = event.origin, event.stanza; local pep_service = mod_pep.get_pep_service(jid_split(stanza.attr.to) or origin.username); - local ok, id, vcard4_item = pep_service:get_last_item("urn:xmpp:vcard4", stanza.attr.from); + local ok, _, vcard4_item = pep_service:get_last_item("urn:xmpp:vcard4", stanza.attr.from); local vcard_temp = st.stanza("vCard", { xmlns = "vcard-temp" }); if ok and vcard4_item then |