Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
64knl authored Jan 26, 2024
2 parents 405b0d9 + 09bed3e commit 4bd146d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Providers/Auth/OpenIDUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,9 @@ public function retrieveByToken($identifier, $token)
}
$model->sub = $identifier;
$model->save();

$model->sendEmailVerificationNotification();
if ($model->email_verified_at === null) {
$model->sendEmailVerificationNotification();
}

return $model;
}
Expand Down

0 comments on commit 4bd146d

Please sign in to comment.