Explicitly block Cloudmagic smart beacons

This commit is contained in:
M66B 2022-02-28 09:14:49 +01:00
parent 1ee2523254
commit ef57a9362c
1 changed files with 4 additions and 0 deletions

View File

@ -2056,6 +2056,10 @@ public class HtmlHelper {
}
private static boolean isTrackingPixel(Element img) {
// Newton mail
if ("cloudmagic-smart-beacon".equals(img.className()))
return true;
String width = img.attr("width").trim();
String height = img.attr("height").trim();