diff --git a/app/Libraries/Adapter/Auth/GoogleAdapter.php b/app/Libraries/Adapter/Auth/GoogleAdapter.php index 31ad775..c6c3cce 100644 --- a/app/Libraries/Adapter/Auth/GoogleAdapter.php +++ b/app/Libraries/Adapter/Auth/GoogleAdapter.php @@ -100,7 +100,7 @@ class GoogleAdapter extends Adapter // )) //조건에 해당하는 사용자가 있는지 검사 $snsEntity = $this->getUserSNSModel()->asObject(UserSNSEntity::class)->where( - array("site" => $this->getSiteName(), "uid" => $result['id']) + array("site" => $this->getSiteName(), "id" => $result['id']) )->first(); if (is_null($snsEntity)) { $snsEntity = $this->getUserSNSModel()->create($this->getSiteName(), $result);