mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_vcard: Remove unused variable [luacheck]
This commit is contained in:
parent
7c8ad7bede
commit
2d7c3d090b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue