Fix auth header check
This commit is contained in:
parent
6a4e89fc40
commit
c4573b02a8
@ -6,6 +6,7 @@
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Auth;
|
||||
use Log;
|
||||
use Closure;
|
||||
use App\Models\User;
|
||||
|
||||
@ -21,7 +22,8 @@ class ApiAuth
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
// Check if Authorization header is in place
|
||||
if(!$request->header('Authorization')) {
|
||||
$auth = $request->header('Authorization', null);
|
||||
if(empty($auth)) {
|
||||
return $this->unauthorized('Authorization header missing');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user