un-hexify TEL links in vCard export
This is required as a plus sign (e.g. +49 for germany) will cause hexification in the link helper. contrib/lisp/org-contacts.el: unhexify tel link TINYCHANGE
This commit is contained in:
parent
d6824ec3c2
commit
3a24177c3a
1 changed files with 1 additions and 1 deletions
|
@ -946,7 +946,7 @@ to do our best."
|
|||
(setq phones-list (org-contacts-remove-ignored-property-values ignore-list (org-contacts-split-property tel)))
|
||||
(setq result "")
|
||||
(while phones-list
|
||||
(setq result (concat result "TEL:" (org-contacts-strip-link (car phones-list)) "\n"))
|
||||
(setq result (concat result "TEL:" (org-link-unescape (org-contacts-strip-link (car phones-list))) "\n"))
|
||||
(setq phones-list (cdr phones-list)))
|
||||
result))
|
||||
(when bday
|
||||
|
|
Loading…
Reference in a new issue