mirror of https://github.com/M66B/FairEmail.git
Simplify tracking images
This commit is contained in:
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…
Reference in New Issue