diff --git a/Classes/Controller/QuestionController.php b/Classes/Controller/QuestionController.php index a249d52..372f475 100644 --- a/Classes/Controller/QuestionController.php +++ b/Classes/Controller/QuestionController.php @@ -208,6 +208,6 @@ private function isBot(): bool foreach ($bots as $bot) { if (stripos($userAgent, htmlspecialchars($bot)) !== false) return true; } - return true; + return false; } }