Update AuthLogin listener

This commit is contained in:
Daniel Supernault 2020-11-25 10:11:50 -07:00
parent 8e8e6cafec
commit ef184a2cb4
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class AuthLogin
protected function userProfile($user) protected function userProfile($user)
{ {
if (empty($user->profile)) { if (empty($user->profile)) {
if($user->created_at->lt(now()->subDays(1))) { if($user->created_at->lt(now()->subDays(1)) && empty($user->status)) {
$p = Profile::withTrashed()->whereUserId($user->id)->first(); $p = Profile::withTrashed()->whereUserId($user->id)->first();
if($p) { if($p) {
$p->restore(); $p->restore();