Software /
code /
verse
Diff
plugins/vcard.lua @ 316:03ad51d96858
plugins.vcard: Convert textual vCards to XEP-54 format
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 11 Oct 2012 17:00:20 +0200 |
parent | 313:d0d378f15d16 |
child | 395:e86144a4eaa1 |
line wrap: on
line diff
--- 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")