Skip to content

Commit 35036b1

Browse files
committed
Only set iat if there is none
Makes sense?
1 parent 954bd7a commit 35036b1

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)