diff --git a/domain.go b/domain.go index 4fb32c4..0c044d2 100644 --- a/domain.go +++ b/domain.go @@ -33,6 +33,10 @@ func shouldAutoSkipDomain(host string) bool { if strings.HasSuffix(host, "1440.news") || host == "1440.news" { return false } + // Skip bare TLDs (no dot means it's just "com", "net", etc.) + if !strings.Contains(host, ".") { + return true + } // Skip domains starting with a digit (spam pattern) if len(host) > 0 && host[0] >= '0' && host[0] <= '9' { return true