Skip to content

Commit

Permalink
Auth::id() don't get $id from Recaller (#13769)
Browse files Browse the repository at this point in the history
  • Loading branch information
apollopy authored and taylorotwell committed Jun 6, 2016
1 parent 0973bfa commit b5503d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Auth/Guard.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public function id()
return;
}

$id = $this->session->get($this->getName(), $this->getRecallerId());
$id = $this->session->get($this->getName());

if (is_null($id) && $this->user()) {
$id = $this->user()->getAuthIdentifier();
Expand Down

0 comments on commit b5503d5

Please sign in to comment.