# HG changeset patch # User Kim Alvefur # Date 1536452084 -7200 # Node ID 161f604e14fa1070dfc63ed1e4e82eecbd11ceef # Parent e977b64ebd81bfb1aceb3a6da0449dedd0146a16 mod_vcard_legacy: Fix uppercase tag name (thanks pep.) Must have slipped on my shift key diff -r e977b64ebd81 -r 161f604e14fa plugins/mod_vcard_legacy.lua --- a/plugins/mod_vcard_legacy.lua Sat Sep 08 16:49:29 2018 +0200 +++ b/plugins/mod_vcard_legacy.lua Sun Sep 09 02:14:44 2018 +0200 @@ -158,7 +158,7 @@ vcard4:tag("n") :text_tag("surname", N and N:get_child_text("FAMILY")) :text_tag("given", N and N:get_child_text("GIVEN")) - :text_tag("additional", N and N:get_child_text("MIDDLe")) + :text_tag("additional", N and N:get_child_text("MIDDLE")) :text_tag("prefix", N and N:get_child_text("PREFIX")) :text_tag("suffix", N and N:get_child_text("SUFFIX")) :up();