Software / code / prosody
Changeset
9285:78673e81243f
mod_vcard_legacy: Fix EXTVAL conversion (thanks pep.)
Good thing uri and url doesn't look similar at all!
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 09 Sep 2018 02:43:45 +0200 |
| parents | 9284:161f604e14fa |
| children | 9286:992e986589b8 |
| files | plugins/mod_vcard_legacy.lua |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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