From 4963866427847878dd03a5c9e8da23146826cc66 Mon Sep 17 00:00:00 2001 From: Joe Lothan Date: Mon, 18 May 2026 00:26:13 -0400 Subject: [PATCH] updated scanning useragent --- pipeline/03_icon_download/download.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/03_icon_download/download.go b/pipeline/03_icon_download/download.go index 294bdbf..16b03b6 100644 --- a/pipeline/03_icon_download/download.go +++ b/pipeline/03_icon_download/download.go @@ -92,7 +92,7 @@ func downloadIcon(url string, timeout time.Duration, maxSize int64) ([]byte, str if err != nil { return nil, "", fmt.Errorf("bad url: %w", err) } - req.Header.Set("User-Agent", "Mozilla/5.0 (compatible; EveryTabBot/1.0; +https://everytab.site/bot)") + req.Header.Set("User-Agent", "Mozilla/5.0 (compatible; EveryTabBot/1.0; +https://everytab.site/bot.html)") resp, err := client.Do(req) if err != nil {