Skip to content

Commit f57a0ff

Browse files
committed
fix
1 parent f3a94f7 commit f57a0ff

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Manager.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,10 @@ protected function buildRefreshClaims(Payload $payload)
178178
return array_merge(
179179
$this->customClaims,
180180
$persistentClaims,
181-
$payload->get(['sub', 'iat'])
181+
[
182+
'sub' => $payload['sub'],
183+
'iat' => $payload['iat'],
184+
]
182185
);
183186
}
184187

0 commit comments

Comments
 (0)