Disable all tracking pixels

This commit is contained in:
M66B 2020-06-11 16:31:37 +02:00
parent e0b34f60bb
commit 6537ffda7c
1 changed files with 9 additions and 9 deletions

View File

@ -1371,15 +1371,15 @@ public class HtmlHelper {
// Build list of allowed hosts // Build list of allowed hosts
List<String> hosts = new ArrayList<>(); List<String> hosts = new ArrayList<>();
for (Element img : document.select("img")) { //for (Element img : document.select("img")) {
String src = img.attr("src"); // String src = img.attr("src");
if (!TextUtils.isEmpty(src) && !isTrackingPixel(img)) { // if (!TextUtils.isEmpty(src) && !isTrackingPixel(img)) {
Uri uri = Uri.parse(img.attr("src")); // Uri uri = Uri.parse(img.attr("src"));
String host = uri.getHost(); // String host = uri.getHost();
if (host != null && !hosts.contains(host)) // if (host != null && !hosts.contains(host))
hosts.add(host); // hosts.add(host);
} // }
} //}
// Images // Images
for (Element img : document.select("img")) { for (Element img : document.select("img")) {