mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-11 02:43:45 +02:00
fix captcha middleware using wrong function when disabled
This commit is contained in:
@@ -17,7 +17,7 @@ class VerifyReCaptcha
|
||||
*/
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
if (!config('recaptcha.enabled')) return next($request);
|
||||
if (!config('recaptcha.enabled')) return $next($request);
|
||||
|
||||
$response_domain = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user