소스 검색

修改异常IP判断条件

兔姬桑 4 년 전
부모
커밋
795e9c0ffc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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')],