Simplify tracking images

pull/178/head
M66B 5 years ago
parent 7546b50046
commit 2544e5d05c

@ -799,12 +799,10 @@ public class HtmlHelper {
if (TextUtils.isEmpty(tracking))
img.appendText("[" + alt + "]");
else {
img.append(" ");
Element a = document.createElement("a");
a.attr("href", tracking);
a.text(alt);
a.text("[" + alt + "]");
img.appendChild(a);
img.appendText(" ");
}
// Annotate source with width and height

Loading…
Cancel
Save