remove spaces from generated tel: links
This commit is contained in:
parent
eba38941d3
commit
d07966e422
|
@ -721,7 +721,7 @@ public class DataRenderer extends Renderer {
|
|||
break;
|
||||
case PHONE:
|
||||
if (contact.hasValue() && contact.getValue().startsWith("+")) {
|
||||
x.ah("tel:"+contact.getValue()).tx(contact.getValue());
|
||||
x.ah("tel:"+contact.getValue().replace(" ", "")).tx(contact.getValue());
|
||||
} else {
|
||||
x.addText(displayContactPoint(contact));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue