diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php index 0730cbf..fbb2e3b 100644 --- a/app/Http/Controllers/AuthController.php +++ b/app/Http/Controllers/AuthController.php @@ -45,7 +45,7 @@ class AuthController extends Controller if ($usernameCheck & $passwordCheck) { $user = User::where([['username', $username],['password', md5($password)]])->first(); $checkExpiredOspro = $this->setExpiredTimeOspro($user['company_id']); - if($checkExpiredOspro === false) { + if($checkExpiredOspro === false && $user['company_id'] != null) { return response()->json(['status' => 'error', 'message' => 'Expired! Please update license!'], 201); } if ($is_mobile) {