Skip to content

Commit

Permalink
Fix missing token on re-auth, closes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
jadb committed Feb 26, 2016
1 parent 6be0db7 commit 1416729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/OAuthAuthenticate.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ protected function _authenticate(Request $request)
protected function _touch(array $data)
{
if ($result = $this->_findUser($data[$this->config('fields.username')])) {
return $result;
return array_merge($data, $result);
}

$event = 'Muffin/OAuth2.newUser';
Expand Down

0 comments on commit 1416729

Please sign in to comment.