Skip to content

Commit

Permalink
Fixed a bug with users not being restored from persistent storage.
Browse files Browse the repository at this point in the history
  • Loading branch information
seeruk committed Jul 7, 2014
1 parent 8aa379b commit 00467d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aegis/Aegis.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function initialize()
$token = $this->storage->read();

// Re-authenticate stored token
if ($token instanceof AuthenticationTokenInterface) {
if ($token instanceof TokenInterface) {
$result = $this->authenticate($token);
}

Expand Down

0 comments on commit 00467d6

Please sign in to comment.