# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1536453825 -7200
# Node ID 78673e81243f692ad5805439214f957086e16f89
# Parent  161f604e14fa1070dfc63ed1e4e82eecbd11ceef
mod_vcard_legacy: Fix EXTVAL conversion (thanks pep.)

Good thing uri and url doesn't look similar at all!

diff -r 161f604e14fa -r 78673e81243f plugins/mod_vcard_legacy.lua
--- a/plugins/mod_vcard_legacy.lua	Sun Sep 09 02:14:44 2018 +0200
+++ b/plugins/mod_vcard_legacy.lua	Sun Sep 09 02:43:45 2018 +0200
@@ -124,7 +124,7 @@
 			if data then
 				vcard_temp:text_tag("BINVAL", data.tags[1]:get_text());
 			elseif info and info.attr.url then
-				vcard_temp:text_tag("EXTVAL", info.attr.uri);
+				vcard_temp:text_tag("EXTVAL", info.attr.url);
 			end
 			vcard_temp:up();
 		end