fix captcha middleware using wrong function when disabled
This commit is contained in:
parent
fa04bb1aea
commit
0ee80b1fec
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue