Explorar o código

update: middleware

tokumeikoi %!s(int64=3) %!d(string=hai) anos
pai
achega
5fa7c534ff
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      app/Http/Middleware/User.php

+ 1 - 0
app/Http/Middleware/User.php

@@ -17,6 +17,7 @@ class User
     {
         if ($request->input('auth_data')) {
             $authData = explode(':', base64_decode($request->input('auth_data')));
+            if (!isset($authData[1]) || !isset($authData[0])) abort(500, '鉴权失败,请重新登入');
             $user = \App\Models\User::where('password', $authData[1])
                 ->where('email', $authData[0])
                 ->first();