Explorar o código

修改异常IP判断条件

兔姬桑 %!s(int64=4) %!d(string=hai) anos
pai
achega
795e9c0ffc
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      app/Http/Middleware/isForbidden.php

+ 1 - 1
app/Http/Middleware/isForbidden.php

@@ -48,7 +48,7 @@ class isForbidden
         $ipLocation = IP::getIPInfo($ip);
 
         // 拒绝无IP请求
-        if (empty($ipLocation) || empty($ipLocation['city'])) {
+        if ( ! $ipLocation || empty(array_filter($ipLocation))) {
             return Response::view(
                 'auth.error',
                 ['message' => trans('error.ForbiddenAccess')],