Переглянути джерело

feat(sanitizer): consider images of size 0x0 as pixel trackers

jvoisin 9 місяців тому
батько
коміт
152ef578d2
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      internal/reader/sanitizer/sanitizer.go

+ 1 - 1
internal/reader/sanitizer/sanitizer.go

@@ -440,7 +440,7 @@ func isPixelTracker(tagName string, attributes []html.Attribute) bool {
 	hasWidth := false
 
 	for _, attribute := range attributes {
-		if attribute.Val == "1" {
+		if attribute.Val == "1" || attribute.Val == "0" {
 			switch attribute.Key {
 			case "height":
 				hasHeight = true