mod_vcard: Remove unused variable [luacheck]

This commit is contained in:
Kim Alvefur 2019-12-23 22:27:25 +01:00
parent 7c8ad7bede
commit 2d7c3d090b

View file

@ -19,7 +19,7 @@ local function handle_vcard(event)
if stanza.attr.type == "get" then
local vCard;
if to then
local node, host = jid_split(to);
local node = jid_split(to);
vCard = st.deserialize(vcards:get(node)); -- load vCard for user or server
else
vCard = st.deserialize(vcards:get(session.username));-- load user's own vCard