Changeset

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
parents 315:3742107e2505
children 317:38562b0b50f2
files plugins/vcard.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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")