diff --git a/app/Http/Middleware/HumanVerification.php b/app/Http/Middleware/HumanVerification.php index d40d84a9b320a0bca7894fd9f88571532fb442a4..e5ab070d032806488a61a3a763a7da2db0ba0f15 100644 --- a/app/Http/Middleware/HumanVerification.php +++ b/app/Http/Middleware/HumanVerification.php @@ -25,7 +25,7 @@ class HumanVerification * If someone that uses a bot finds this out we * might have to change it at some point. */ - if($request->filled('password') || $request->filled('key') || !env('BOT_PROTECTION', false)){ + if($request->filled('password') || $request->filled('key') || $request->filled('appversion') || !env('BOT_PROTECTION', false)){ return $next($request); }