Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Jan 21, 2020
1 parent f3a94f7 commit f57a0ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,10 @@ protected function buildRefreshClaims(Payload $payload)
return array_merge(
$this->customClaims,
$persistentClaims,
$payload->get(['sub', 'iat'])
[
'sub' => $payload['sub'],
'iat' => $payload['iat'],
]
);
}

Expand Down

0 comments on commit f57a0ff

Please sign in to comment.