fix bug with nested <a> links

This commit is contained in:
Grahame Grieve 2020-09-21 19:54:45 +10:00
parent 71e4b5d6e5
commit 17ed666fef
1 changed files with 2 additions and 2 deletions

View File

@ -488,7 +488,7 @@ public class ProfileDrivenRenderer extends ResourceRenderer {
renderAddress(x, (Address) e);
return true;
} else if (e instanceof ContactPoint) {
renderContactPoint(x, (ContactPoint) e);
displayContactPoint(x, (ContactPoint) e);
return true;
} else if (e instanceof Timing) {
renderTiming(x, (Timing) e);
@ -530,7 +530,7 @@ public class ProfileDrivenRenderer extends ResourceRenderer {
boolean first = true;
for (ContactPoint c : cd.getTelecom()) {
if (first) first = false; else x.tx(",");
renderContactPoint(x, c);
displayContactPoint(x, c);
}
return true;
} else if (e instanceof Range) {