Browse Source

Mark empty User-Agent strings as bots

master
Matt Baer 6 years ago
parent
commit
5c3827dc76
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      bots/bots.go

+ 3
- 0
bots/bots.go View File

@@ -225,6 +225,9 @@ var botPrefixes = []string{
// IsBot returns whether or not the provided User-Agent string is a known bot
// or crawler.
func IsBot(ua string) bool {
if ua == "" {
return true
}
if _, ok := bots[ua]; ok {
return true
}


Loading…
Cancel
Save