mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-03 00:34:35 -04:00
Fix for missing method property
This commit is contained in:
parent
7fdbdcbf6a
commit
185986e819
@ -513,11 +513,12 @@ class LoginController extends BaseController
|
|||||||
{
|
{
|
||||||
|
|
||||||
nlog('found user and updating their user record');
|
nlog('found user and updating their user record');
|
||||||
|
$name = OAuth::splitName($socialite_user->getName());
|
||||||
|
|
||||||
$update_user = [
|
$update_user = [
|
||||||
'first_name' => $name[0],
|
'first_name' => $name[0],
|
||||||
'last_name' => $name[1],
|
'last_name' => $name[1],
|
||||||
'password' => '',
|
// 'password' => '',
|
||||||
'email' => $socialite_user->getEmail(),
|
'email' => $socialite_user->getEmail(),
|
||||||
'oauth_user_id' => $socialite_user->getId(),
|
'oauth_user_id' => $socialite_user->getId(),
|
||||||
'oauth_provider_id' => $provider,
|
'oauth_provider_id' => $provider,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user