We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe4e325 commit f02d5c2Copy full SHA for f02d5c2
src/Jobs/CheckIfBotIsReal.php
@@ -42,7 +42,7 @@ public function handle()
42
$found_bot_key = null;
43
44
foreach (array_keys($this->allowedBots) as $bot) {
45
- if (strpos($this->client->userAgent, strtolower($bot)) !== false) {
+ if (strpos(strtolower($this->client->userAgent), strtolower($bot)) !== false) {
46
$found_bot_key = $bot;
47
break;
48
}
0 commit comments