# HG changeset patch # User Kim Alvefur # Date 1349967620 -7200 # Node ID 03ad51d96858a90a80667be0a4841d020f9c2776 # Parent 3742107e25056788ba3de62742110dde58e16777 plugins.vcard: Convert textual vCards to XEP-54 format diff -r 3742107e2505 -r 03ad51d96858 plugins/vcard.lua --- a/plugins/vcard.lua Mon Sep 10 23:37:04 2012 +1000 +++ b/plugins/vcard.lua Thu Oct 11 17:00:20 2012 +0200 @@ -23,7 +23,7 @@ if type(aCard) == "table" and aCard.name then xCard = aCard; elseif type(aCard) == "string" then - xCard = vcard.from_text(aCard)[1]; + xCard = vcard.to_xep54(vcard.from_text(aCard)[1]); elseif type(aCard) == "table" then xCard = vcard.to_xep54(aCard); error("Converting a table to vCard not implemented")