Skip to content

Commit e900282

Browse files
committed
Merge pull request #75 from auth0/dschenkelman-patch-1
Only set iat if there is none
2 parents 634b8ed + 35036b1 commit e900282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports.sign = function(payload, secretOrPrivateKey, options) {
3939

4040
var timestamp = Math.floor(Date.now() / 1000);
4141
if (!options.noTimestamp) {
42-
payload.iat = timestamp;
42+
payload.iat = payload.iat || timestamp;
4343
}
4444

4545
var expiresInSeconds = options.expiresInMinutes ?

0 commit comments

Comments
 (0)