Workaround invalid tracking image width/height

This commit is contained in:
M66B 2024-05-20 07:36:29 +02:00
parent 323da90fc4
commit 0934759a77
1 changed files with 5 additions and 2 deletions

View File

@ -2425,8 +2425,11 @@ public class HtmlHelper {
if ("cloudmagic-smart-beacon".equals(img.className()))
return true;
String width = img.attr("width").trim();
String height = img.attr("height").trim();
// Canary Mail
// <img id="..." alt="" width="0px" src="https://receipts.canarymail.io/track/..._....png" height="0px">
String width = img.attr("width").replace("px", "").trim();
String height = img.attr("height").replace("px", "").trim();
if (TextUtils.isEmpty(width) || TextUtils.isEmpty(height))
return false;